1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2025-09-09 16:01:58 +01:00

Awesome: Update from upstream.

Refresh files for "Awesome" theme, now driven by fluentdesk/Awesome-CV,
a templatized fork of posquit0/Awesome-CV.
This commit is contained in:
hacksalot
2016-02-11 10:10:10 -05:00
parent cad46c2270
commit e2a04958b0
36 changed files with 1034 additions and 503 deletions

View File

@@ -1,18 +1,30 @@
[~ if( r.employment && r.employment.history && r.employment.history.length ) { ~]
[~ if (r.employment && r.employment.history && r.employment.history.length ) { ~]
%-------------------------------------------------------------------------------
% SECTION TITLE
%-------------------------------------------------------------------------------
\cvsection{Experience}
%-------------------------------------------------------------------------------
% CONTENT
%-------------------------------------------------------------------------------
\begin{cventries}
[~ _.each(r.employment.history, function(emp) { ~]
[~ _.each( r.employment.history, function(job) { ~]
%---------------------------------------------------------
\cventry
{[[ emp.position ]]}
{[[ emp.employer ]]}
{[[ emp.location ]]}
{[[ emp.safe.start ]] - [[ emp.safe.end ]]}
[~ if( emp.highlights && emp.highlights.length ) {
~]{
\begin{cvitems}[~ _.each( emp.highlights, function(high) { ~]
\item {[[ high.replace(/#/g, '\\#') ]]}[~ }); ~]
{[[ job.position ]]} % Job title
{[[ job.employer ]]} % Organization
{[[ job.location ]]} % Location
{[~ print( h.dateRange( job ) ) ~]} % Date(s)
{
\begin{cvitems} % Description(s) of tasks/responsibilities
[~ _.each( job.highlights, function (high) { ~]
\item {[[ high ]]}
[~ }); ~]
\end{cvitems}
}[~ } ~]
}
[~ }); ~]
%---------------------------------------------------------
\end{cventries}
[~ } ~]