1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2025-08-09 02:11:00 +01:00
Files
fresh-themes/themes/awesome/src/latex/examples/resume/education.tex
2015-12-08 10:14:29 -05:00

21 lines
590 B
TeX

[~ if( r.education && r.education.history && r.education.history.length) { ~]
\cvsection{Education}
\begin{cventries}
[~ _.each(r.education.history, function(edu) { ~]
\cventry
{[[ edu.studyType ]], [[ edu.area ]]}
{[[ edu.institution ]]}
{[[ edu.location ]]}
{[[ edu.safe.start ]] - [[ edu.safe.end ]]}
[~ if( edu.highlights && edu.highlights.length ) {
~]{
\begin{cvitems}
[~ _.each(edu.highlights, function(high) { ~]
\item {[[ high ]]}
[~ }); ~]
\end{cvitems}
}[~ } else { ~]{ }[~ } ~]
[~ }); ~]
\end{cventries}
[~ } ~]