Skip to content

Commit

Permalink
fix: templating
Browse files Browse the repository at this point in the history
  • Loading branch information
florianschwanz committed Jun 18, 2022
1 parent 8b452b8 commit 5929dae
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 43 deletions.
2 changes: 1 addition & 1 deletion awesome-cv.cls
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ pdfkeywords={}
% Configuration for fonts
%-------------------------------------------------------------------------------
% Set the FontAwesome font to be up-to-date.
\newfontfamily\FA[Path=\@fontdir]{FontAwesome}
%\newfontfamily\FA[Path=\@fontdir]{FontAwesome}
% Set font for header (default is Roboto)
\newfontfamily\headerfont[
Path=\@fontdir,
Expand Down
83 changes: 41 additions & 42 deletions src/cv.tex
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@
{$education.location$} % Location
{$education.date$} % Date(s)
{
\begin{cvitems}
$for(education.description)$
\item {$education.description.text$}
$endfor$
\end{cvitems}
\begin{cvitems}
$for(education.description)$
\item {$education.description.text$}
$endfor$
\end{cvitems}
}
$endfor$
\end{cventries}
Expand All @@ -128,11 +128,9 @@
$for(skill)$
\cvskill
{$skill.category$}
{
$for(skill.subskill)$
$skill.subskill$$skill_separator$
$endfor$
}
$endfor$
\end{cvskills}
$endif$
Expand All @@ -152,18 +150,18 @@
{$experience.location$}
{$experience.date$}
{
\begin{cvitems}
$for(experience.task)$
\item {$experience.task$}
$endfor$
\end{cvitems}
\begin{cvitems}
$for(experience.task)$
\item {$experience.task$}
$endfor$
\end{cvitems}
}
$endfor$
\end{cventries}
$endif$

%-------------------------------------------------------------------------------
% CERTICIATIONS
% CERTIFIATIONS
%-------------------------------------------------------------------------------

$if(certification)$
Expand Down Expand Up @@ -196,11 +194,11 @@
{$extracurricular.location$} % Location
{$extracurricular.date$} % Date(s)
{
\begin{cvitems}
$for(extracurricular.contribution)$
\item {$extracurricular.contribution$}
$endfor$
\end{cvitems}
\begin{cvitems}
$for(extracurricular.contribution)$
\item {$extracurricular.contribution$}
$endfor$
\end{cvitems}
}
$endfor$
\end{cventries}
Expand All @@ -222,15 +220,15 @@
{$honor_international.event$} % Event
{$honor_international.location$} % Location
{$honor_international.date$} % Date(s)
$if(honor_international.description)$
{
\begin{cvitems}
$for(honor_international.description)$
\item {$honor_international.description$}
$endfor$
\end{cvitems}
$if(honor_international.description)$
\begin{cvitems}
$for(honor_international.description)$
\item {$honor_international.description$}
$endfor$
\end{cvitems}
$endif$
}
$endif$
$endfor$
\end{cvhonors}
$endif$
Expand All @@ -245,15 +243,15 @@
{$honor_domestic.event$} % Event
{$honor_domestic.location$} % Location
{$honor_domestic.date$} % Date(s)
$if(honor_domestic.description)$
{
\begin{cvitems}
$for(honor_domestic.description)$
\item {$honor_domestic.description$}
$endfor$
\end{cvitems}
$if(honor_domestic.description)$
\begin{cvitems}
$for(honor_domestic.description)$
\item {$honor_domestic.description$}
$endfor$
\end{cvitems}
$endif$
}
$endif$
$endfor$
\end{cvhonors}
$endif$
Expand All @@ -273,11 +271,11 @@
{$presentation.location$} % Location
{$presentation.date$} % Date(s)
{
\begin{cvitems}
$for(presentation.description)$
\item {$presentation.description$}
$endfor$
\end{cvitems}
\begin{cvitems}
$for(presentation.description)$
\item {$presentation.description$}
$endfor$
\end{cvitems}
}
$endfor$
\end{cventries}
Expand All @@ -298,11 +296,11 @@
{$writing.location$} % Location
{$writing.date$} % Date(s)
{
\begin{cvitems}
$for(writing.description)$
\item {$writing.description$}
$endfor$
\end{cvitems}
\begin{cvitems}
$for(writing.description)$
\item {$writing.description$}
$endfor$
\end{cvitems}
}
$endfor$
\end{cventries}
Expand All @@ -322,6 +320,7 @@
{$committee.committee$} % Committee
{$committee.location$} % Location
{$committee.date$} % Date(s)
{}
$endfor$
\end{cvhonors}
$endif$
Expand Down

0 comments on commit 5929dae

Please sign in to comment.