mirror of https://github.com/eyhc1/rendercv.git
classic: fix ExperienceEntry and NormalEntry without location and dates
This commit is contained in:
parent
f5a2333af7
commit
d184ff4190
|
@ -7,32 +7,32 @@
|
||||||
\vspace{<<design.margins.entry_area.vertical_between>>}
|
\vspace{<<design.margins.entry_area.vertical_between>>}
|
||||||
((* endif *))
|
((* endif *))
|
||||||
|
|
||||||
((* if date_and_location_strings == ["", "", ""] or date_and_location_strings == ["", ""] *))
|
((* if entry.date_string or entry.location *))
|
||||||
\begin{onecolentry}
|
|
||||||
\textbf{<<entry.company>>}, <<entry.position>>
|
|
||||||
((* for item in entry.highlights *))
|
|
||||||
((* if loop.first *))
|
|
||||||
\begin{highlights}
|
|
||||||
((* endif *))
|
|
||||||
\item <<item>>
|
|
||||||
((* if loop.last *))
|
|
||||||
\end{highlights}
|
|
||||||
((* endif *))
|
|
||||||
((* endfor *))
|
|
||||||
\end{onecolentry}
|
|
||||||
((* else *))
|
|
||||||
\begin{twocolentry}{
|
\begin{twocolentry}{
|
||||||
<<date_and_location_strings|join("\n\n")>>
|
<<date_and_location_strings|join("\n\n")>>
|
||||||
}
|
}
|
||||||
\textbf{<<entry.company>>}, <<entry.position>>
|
\textbf{<<entry.company>>}, <<entry.position>>
|
||||||
((* for item in entry.highlights *))
|
((* for item in entry.highlights *))
|
||||||
((* if loop.first *))
|
((* if loop.first *))
|
||||||
\begin{highlights}
|
\begin{highlights}
|
||||||
((* endif *))
|
((* endif *))
|
||||||
\item <<item>>
|
\item <<item>>
|
||||||
((* if loop.last *))
|
((* if loop.last *))
|
||||||
\end{highlights}
|
\end{highlights}
|
||||||
((* endif *))
|
((* endif *))
|
||||||
((* endfor *))
|
((* endfor *))
|
||||||
\end{twocolentry}
|
\end{twocolentry}
|
||||||
|
((* else *))
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{<<entry.company>>}, <<entry.position>>
|
||||||
|
((* for item in entry.highlights *))
|
||||||
|
((* if loop.first *))
|
||||||
|
\begin{highlights}
|
||||||
|
((* endif *))
|
||||||
|
\item <<item>>
|
||||||
|
((* if loop.last *))
|
||||||
|
\end{highlights}
|
||||||
|
((* endif *))
|
||||||
|
((* endfor *))
|
||||||
|
\end{onecolentry}
|
||||||
((* endif *))
|
((* endif *))
|
|
@ -7,32 +7,32 @@
|
||||||
\vspace{<<design.margins.entry_area.vertical_between>>}
|
\vspace{<<design.margins.entry_area.vertical_between>>}
|
||||||
((* endif *))
|
((* endif *))
|
||||||
|
|
||||||
((* if date_and_location_strings == ["", "", ""] or date_and_location_strings == ["", ""] *))
|
((* if entry.date_string or entry.location *))
|
||||||
\begin{onecolentry}
|
|
||||||
\textbf{<<entry.name>>}
|
|
||||||
((* for item in entry.highlights *))
|
|
||||||
((* if loop.first *))
|
|
||||||
\begin{highlights}
|
|
||||||
((* endif *))
|
|
||||||
\item <<item>>
|
|
||||||
((* if loop.last *))
|
|
||||||
\end{highlights}
|
|
||||||
((* endif *))
|
|
||||||
((* endfor *))
|
|
||||||
\end{onecolentry}
|
|
||||||
((* else *))
|
|
||||||
\begin{twocolentry}{
|
\begin{twocolentry}{
|
||||||
<<date_and_location_strings|join("\n\n")>>
|
<<date_and_location_strings|join("\n\n")>>
|
||||||
}
|
}
|
||||||
\textbf{<<entry.name>>}
|
\textbf{<<entry.name>>}
|
||||||
((* for item in entry.highlights *))
|
((* for item in entry.highlights *))
|
||||||
((* if loop.first *))
|
((* if loop.first *))
|
||||||
\begin{highlights}
|
\begin{highlights}
|
||||||
((* endif *))
|
((* endif *))
|
||||||
\item <<item>>
|
\item <<item>>
|
||||||
((* if loop.last *))
|
((* if loop.last *))
|
||||||
\end{highlights}
|
\end{highlights}
|
||||||
((* endif *))
|
((* endif *))
|
||||||
((* endfor *))
|
((* endfor *))
|
||||||
\end{twocolentry}
|
\end{twocolentry}
|
||||||
|
((* else *))
|
||||||
|
\begin{onecolentry}
|
||||||
|
\textbf{<<entry.name>>}
|
||||||
|
((* for item in entry.highlights *))
|
||||||
|
((* if loop.first *))
|
||||||
|
\begin{highlights}
|
||||||
|
((* endif *))
|
||||||
|
\item <<item>>
|
||||||
|
((* if loop.last *))
|
||||||
|
\end{highlights}
|
||||||
|
((* endif *))
|
||||||
|
((* endfor *))
|
||||||
|
\end{onecolentry}
|
||||||
((* endif *))
|
((* endif *))
|
Loading…
Reference in New Issue