mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-23 00:30:10 +00:00
55 lines
1.9 KiB
Plaintext
55 lines
1.9 KiB
Plaintext
{#
|
|
|
|
modern/txt.txt
|
|
A plain text resume template for FluentCV's "modern" theme.
|
|
|
|
#}
|
|
{{ 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 }}{% } %}
|
|
|
|
***
|
|
|
|
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
|
|
|
|
|
|
{% if ( r.skills && r.skills.sets && r.skills.sets.length ) { %}SKILLS
|
|
{% r.skills.sets.forEach( function( set ) { %}
|
|
- {{ set.name }}: {% set.skills.forEach(function(sk){ %}{{ sk }}, {% }); %}
|
|
{{ set.level }}
|
|
{% }); %}
|
|
{% } else if( r.skills && r.skills.list && r.skills.list.length ) { %}
|
|
|
|
{% } %}
|
|
|
|
{% if ( r.employment && r.employment.history ) { %}EMPLOYMENT
|
|
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
|
{{ proj.employer }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
|
|
{{ proj.summary }}
|
|
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high ) { %}
|
|
- {{ 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 }}
|
|
{% if( edu.courses ) { %}{% edu.courses.forEach( function( course ) { %}
|
|
- {{ course }}
|
|
{% }); } }); } %}
|
|
|
|
{% if ( r.service && r.service.history ) { %}VOLUNTEER
|
|
{% r.service.history.forEach( function( srv, idx, ar) { %}
|
|
{{ srv.organization }} ({{ srv.safe.start.format('YYYY-MM') }} — {{ srv.safe.end.format('YYYY-MM') }})
|
|
{{ srv.summary }}
|
|
{% if( srv.highlights ) { %}{% srv.highlights.forEach( function( high ) { %}
|
|
- {{ high }}
|
|
{% }); } }); } %}
|
|
|
|
{% if ( r.writing && r.writing.length ) { %}WRITING
|
|
{% r.writing.forEach( function( wri, idx, ar) { %}
|
|
{{ wri.title }} ({{ wri.safe.date.format('YYYY-MM') }})
|
|
{{ wri.summary }}
|
|
{% }); } %}
|