mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-14 20:50:11 +00:00
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
{#
|
|
|
|
compact/txt.txt
|
|
A plain text resume template for FluentCV's "compact" 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.length ) { %}SKILLS
|
|
{% r.skills.forEach( function( skill ) { %}
|
|
- {{ skill.name }}: {{ skill.level }}
|
|
{% }); } %}
|
|
|
|
{% 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') }})
|
|
{{ 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 }}
|
|
{% }); } %}
|