mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-22 08:10:10 +00:00
Awesome: add service section.
This commit is contained in:
parent
978cedf716
commit
5762fb3a44
@ -90,6 +90,7 @@
|
|||||||
\input{cv/education.tex}
|
\input{cv/education.tex}
|
||||||
\input{cv/skills.tex}
|
\input{cv/skills.tex}
|
||||||
\input{cv/experience.tex}
|
\input{cv/experience.tex}
|
||||||
|
\input{cv/service.tex}
|
||||||
\input{cv/extracurricular.tex}
|
\input{cv/extracurricular.tex}
|
||||||
\input{cv/honors.tex}
|
\input{cv/honors.tex}
|
||||||
\input{cv/presentation.tex}
|
\input{cv/presentation.tex}
|
||||||
|
28
themes/awesome/src/latex/examples/cv/service.tex
Normal file
28
themes/awesome/src/latex/examples/cv/service.tex
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
[~ if (r.service && r.service.history && r.service.history.length ) { ~]
|
||||||
|
%-------------------------------------------------------------------------------
|
||||||
|
% SECTION TITLE
|
||||||
|
%-------------------------------------------------------------------------------
|
||||||
|
\cvsection{Service}
|
||||||
|
|
||||||
|
|
||||||
|
%-------------------------------------------------------------------------------
|
||||||
|
% CONTENT
|
||||||
|
%-------------------------------------------------------------------------------
|
||||||
|
\begin{cventries}
|
||||||
|
[~ _.each( r.service.history, function(job) { ~]
|
||||||
|
%---------------------------------------------------------
|
||||||
|
\cventry
|
||||||
|
{[[ job.position ]]} % Job title
|
||||||
|
{[[ job.organization ]]} % Organization
|
||||||
|
{[[ job.location ]]} % Location
|
||||||
|
{[[ h.dateRange( job ) ]]} % Date(s)
|
||||||
|
{[~ if (job.highlights && job.highlights.length ) { ~]
|
||||||
|
\begin{cvitems} % Description(s) of tasks/responsibilities
|
||||||
|
[[ h.pad( job.highlights.map( function(h) { return '\\item {' + h + '}' }), -8 ) ]]
|
||||||
|
\end{cvitems}
|
||||||
|
[~ } ~]}
|
||||||
|
|
||||||
|
[~ }); ~]
|
||||||
|
%---------------------------------------------------------
|
||||||
|
\end{cventries}
|
||||||
|
[~ } ~]
|
@ -90,6 +90,7 @@
|
|||||||
% \input{resume/summary.tex}
|
% \input{resume/summary.tex}
|
||||||
\input{resume/education.tex}
|
\input{resume/education.tex}
|
||||||
\input{resume/experience.tex}
|
\input{resume/experience.tex}
|
||||||
|
\input{resume/service.tex}
|
||||||
\input{resume/extracurricular.tex}
|
\input{resume/extracurricular.tex}
|
||||||
\input{resume/honors.tex}
|
\input{resume/honors.tex}
|
||||||
\input{resume/presentation.tex}
|
\input{resume/presentation.tex}
|
||||||
|
28
themes/awesome/src/latex/examples/resume/service.tex
Normal file
28
themes/awesome/src/latex/examples/resume/service.tex
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
[~ if (r.service && r.service.history && r.service.history.length ) { ~]
|
||||||
|
%-------------------------------------------------------------------------------
|
||||||
|
% SECTION TITLE
|
||||||
|
%-------------------------------------------------------------------------------
|
||||||
|
\cvsection{Service}
|
||||||
|
|
||||||
|
|
||||||
|
%-------------------------------------------------------------------------------
|
||||||
|
% CONTENT
|
||||||
|
%-------------------------------------------------------------------------------
|
||||||
|
\begin{cventries}
|
||||||
|
[~ _.each( r.service.history, function(job) { ~]
|
||||||
|
%---------------------------------------------------------
|
||||||
|
\cventry
|
||||||
|
{[[ job.position ]]} % Job title
|
||||||
|
{[[ job.organization ]]} % Organization
|
||||||
|
{[[ job.location ]]} % Location
|
||||||
|
{[[ h.dateRange( job ) ]]} % Date(s)
|
||||||
|
{[~ if (job.highlights && job.highlights.length ) { ~]
|
||||||
|
\begin{cvitems} % Description(s) of tasks/responsibilities
|
||||||
|
[[ h.pad( job.highlights.map( function(h) { return '\\item {' + h + '}' }), -8 ) ]]
|
||||||
|
\end{cvitems}
|
||||||
|
[~ } ~]}
|
||||||
|
|
||||||
|
[~ }); ~]
|
||||||
|
%---------------------------------------------------------
|
||||||
|
\end{cventries}
|
||||||
|
[~ } ~]
|
@ -28,6 +28,7 @@
|
|||||||
"src/latex/examples/cv/committees.tex",
|
"src/latex/examples/cv/committees.tex",
|
||||||
"src/latex/examples/cv/education.tex",
|
"src/latex/examples/cv/education.tex",
|
||||||
"src/latex/examples/cv/experience.tex",
|
"src/latex/examples/cv/experience.tex",
|
||||||
|
"src/latex/examples/cv/service.tex",
|
||||||
"src/latex/examples/cv/extracurricular.tex",
|
"src/latex/examples/cv/extracurricular.tex",
|
||||||
"src/latex/examples/cv/honors.tex",
|
"src/latex/examples/cv/honors.tex",
|
||||||
"src/latex/examples/cv/presentation.tex",
|
"src/latex/examples/cv/presentation.tex",
|
||||||
|
Loading…
Reference in New Issue
Block a user