1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2024-09-19 15:25:57 +01:00
fresh-themes/themes/modern/templates/txt.txt

37 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-10-06 19:20:47 +01:00
{#
modern/txt.txt
A plain text resume template for FluentCV's "modern" theme.
2015-10-06 19:20:47 +01:00
#}
{{ r.name }}
{% if (r.contact.email) { %}Email: {{ r.contact.email }}{% } %}
{% if (r.contact.phone) { %}Tel: {{ r.contact.phone }}{% } %}
{% if (r.contact.website) { %}Web: {{ r.contact.website }}{% } %}
2015-10-06 19:20:47 +01:00
***
2015-11-19 15:05:10 +00:00
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
2015-10-06 19:20:47 +01:00
{% if ( r.skills && r.skills.length ) { %}SKILLS
{% r.skills.forEach( function( skill, idx, ar) { %}
- {{ skill.name }}: {{ skill.level }}
2015-10-06 19:20:47 +01:00
{% }); } %}
{% if ( r.employment.history && r.employment.history.length ) { %}EMPLOYMENT
{% r.employment.history.forEach( function( proj, idx, ar) { %}
{{ proj.employer }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
2015-10-06 19:20:47 +01:00
{{ proj.summary }}
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high, idx, ar) { %}
- {{ high }}
{% }); } }); } %}
{% if ( r.education && r.education.history ) { %}EDUCATION
{% r.education.history.forEach( function( edu, idx, ar) { %}
{{ edu.institution }} ({{ edu.safe.start.format('YYYY-MM') }} — {{ edu.safe.end.format('YYYY-MM') }})
{{ edu.summary }}
2015-10-06 19:20:47 +01:00
{% if( edu.courses ) { %}{% edu.courses.forEach( function( course, idx, ar) { %}
- {{ course }}
{% }); } }); } %}