2015-10-06 19:20:47 +01:00
|
|
|
{#
|
2015-10-10 22:53:59 +01:00
|
|
|
|
|
|
|
modern/txt.txt
|
|
|
|
A plain text resume template for FluentCV's "modern" theme.
|
|
|
|
|
2015-10-06 19:20:47 +01:00
|
|
|
#}
|
2015-11-19 03:40:40 +00: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 03:40:40 +00:00
|
|
|
{% if ( r.summary && r.summary.length ) { %}{{ r.summary }}{% } %}
|
2015-10-06 19:20:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
{% if ( r.skills && r.skills.length ) { %}SKILLS
|
|
|
|
{% r.skills.forEach( function( skill, idx, ar) { %}
|
2015-11-19 03:40:40 +00:00
|
|
|
- {{ skill.name }}: {{ skill.level }}
|
2015-10-06 19:20:47 +01:00
|
|
|
{% }); } %}
|
|
|
|
|
2015-11-19 03:40:40 +00: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 }}
|
|
|
|
{% }); } }); } %}
|
|
|
|
|
2015-11-19 03:40:40 +00:00
|
|
|
{% 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 }}
|
|
|
|
{% }); } }); } %}
|