1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2025-05-07 14:27:08 +01:00

All: Better section handling & add projects.

This commit is contained in:
hacksalot
2016-01-05 04:50:43 -05:00
parent 6f2a71070e
commit 45d4cd2675
18 changed files with 299 additions and 171 deletions

View File

@ -1,6 +1,7 @@
Theme: Minimist
===============
An unstyled résumé theme.
An unstyled résumé theme. Unlike most other FRESH themes, Minimist uses the
Underscore.js templating engine (instead of Handlebars).
## License

View File

@ -19,7 +19,7 @@
{% if ( r.employment && r.employment.history ) { %}{% print(h.sectionTitle('EMPLOYMENT')) %}
{% r.employment.history.forEach( function( proj, idx, ar) { %}
{{ proj.employer }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
{{ proj.employer }} {{ h.dateRange(proj) }}
{{ proj.summary }}
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high ) { %}
- {{ high }}
@ -27,7 +27,7 @@
{% if ( r.education && r.education.history ) { %}{% print(h.sectionTitle('EDUCATION')) %}
{% r.education.history.forEach( function( edu, idx, ar) { %}
{{ edu.institution }} ({{ edu.safe.start.format('YYYY-MM') }} — {{ edu.safe.end.format('YYYY-MM') }})
{{ edu.institution }} {% print(h.dateRange(edu)) %}
{{ edu.summary }}
{% if( edu.courses ) { %}{% edu.courses.forEach( function( course ) { %}
- {{ course }}
@ -35,10 +35,10 @@
{% if ( r.projects && r.projects.length ) { %}{% print(h.sectionTitle('PROJECTS')) %}
{% r.projects.forEach( function( proj, idx, ar) { %}
{{ proj.title }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
{{ proj.title }} {{ h.dateRange( proj ) }}
{{ proj.summary }}
{% if( edu.courses ) { %}{% proj.highlights.forEach( function( course ) { %}
- {{ course }}
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high ) { %}
- {{ high }}
{% }); } }); } %}
{% if ( r.service && r.service.history ) { %}{% print(h.sectionTitle('service', 'VOLUNTEER')) %}

View File

@ -1,6 +1,6 @@
{
"title": "awesome",
"description": "A visually compact résumé theme for FluentCV.",
"author": "hacksalot <hacksalot@fluentdesk.com>",
"title": "minimist",
"description": "A unstyled résumé theme for FluentCV.",
"author": "hacksalot <hacksalot@fluentdesk.com>",
"engine": "underscore"
}