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

31 lines
1.2 KiB
Plaintext
Raw Normal View History

{{ 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-27 12:41:12 +00:00
***
2015-11-19 15:05:10 +00:00
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
2015-10-27 12:41:12 +00:00
{% if ( r.skills && r.skills.length ) { %}SKILLS
{% r.skills.forEach( function( skill, idx, ar) { %}
- {{ skill.name }}: {{ skill.level }}
2015-10-27 12:41:12 +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-27 12:41:12 +00: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-27 12:41:12 +00:00
{% if( edu.courses ) { %}{% edu.courses.forEach( function( course, idx, ar) { %}
- {{ course }}
{% }); } }); } %}