Browse Source

Fixed spacing issue in cventries

pull/1/head
rodley82 1 year ago
parent
commit
61e7d684b2
  1. 25
      app/views/templates/awesome/resume.html.erb

25
app/views/templates/awesome/resume.html.erb

@ -105,18 +105,19 @@
%--------------------------------------------------------- %---------------------------------------------------------
<% @user.work_experiences.active.each do |w| %> <% @user.work_experiences.active.each do |w| %>
\cventry \cventry
{<%= w.title.tex_safe %>} % Job title {<%= w.title.tex_safe %>} % Job title
{<%= w.employer.tex_safe %>} % Organization {<%= w.employer.tex_safe %>} % Organization
{} % Location {} % Location
{<%= w.period.tex_safe %>} % Date(s) {<%= w.period.tex_safe %>} % Date(s)
{ {
\begin{cvitems} % Description(s) of tasks/responsibilities \begin{cvitems} % Description(s) of tasks/responsibilities
<% w.items_csv&.split(";")&.each do |i| %> <% w.items_csv&.split(";")&.each do |i| %>
\item {<%= i.tex_safe %>} \item {<%= i.tex_safe %>}
<% end %> <% end %>
\end{cvitems} \end{cvitems}
} }
<% end %> <% end %>
%--------------------------------------------------------- %---------------------------------------------------------

Loading…
Cancel
Save