1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2025-05-05 13:27:08 +01:00

Update with FRESH format changes.

This commit is contained in:
devlinjd
2015-11-21 08:20:44 -05:00
parent 63cce908ca
commit c64e6e450a
13 changed files with 411 additions and 172 deletions

View File

@ -25,7 +25,7 @@
{% } %}
{% if ( r.skills && r.skills.length ) { %}
{% if ( r.skills && r.skills.sets && r.skills.sets.length ) { %}
<section id="skills">
<header>
<h2>Skills</h2><hr>
@ -38,10 +38,10 @@
</tr>
</thead>
<tbody>
{% r.skills.forEach( function( skill, idx, ar) { %}
{% r.skills.sets.forEach( function( skillset ) { %}
<tr>
<td style="width: 25%;">{{ skill.name }}</td>
<td class="keywords">{{ skill.level }}</td>
<td style="width: 25%;">{{ skillset.name }}</td>
<td class="keywords">{{ skillset.skills.join(',') }}</td>
</tr>
{% }); %}
</tbody>
@ -129,15 +129,15 @@
</section>
{% } %}
{% if( r.publications && r.publications.length ) { %}
{% if( r.writing && r.writing.length ) { %}
<section id="publications">
<header>
<h2>Publications</h2><hr>
</header>
<span class="fa fa-lg fa-trophy"></span>
{% r.publications.forEach( function( pub, idx, ar) { %}
{% r.writing.forEach( function( pub, idx, ar) { %}
<h4>
{% if( pub.link ) { %}
{% if( pub.url ) { %}
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>,&nbsp;{{ pub.publisher }}
{% } else { %}
<span class="res-label">{{ pub.title }}</span>,&nbsp;{{ pub.publisher }}
@ -151,14 +151,14 @@
</section>
{% } %}
{% if( r.awards && r.awards.length ) { %}
{% if( r.recognition && r.recognition.length ) { %}
<section id="awards">
<header>
<h2>Awards</h2><hr>
</header>
<span class="fa fa-lg fa-trophy"></span>
{% r.awards.forEach( function( award, idx, ar) { %}
<h4><span class="res-label">{{ award.title }}</span>, {{ award.awarder }} <span class="tenure">{{ award.safeDate.format('YYYY') }}</span></h4>
{% r.recognition.forEach( function( award, idx, ar) { %}
<h4><span class="res-label">{{ award.title }}</span>, {{ award.from }} <span class="tenure">{{ award.safe.date.format('YYYY') }}</span></h4>
{{ award.summary|md }}
{% }); %}
</section>

View File

@ -27,7 +27,7 @@
{% } %}
{% if ( r.skills && r.skills.length ) { %}
{% if ( r.skills && r.skills.sets && r.skills.sets.length ) { %}
<section id="skills">
<header>
<h2>Skills</h2><hr>
@ -40,10 +40,10 @@
</tr>
</thead>
<tbody>
{% r.skills.forEach( function( skill, idx, ar) { %}
{% r.skills.sets.forEach( function( skillset ) { %}
<tr>
<td style="width: 25%;">{{ skill.name }}</td>
<td class="keywords">{{ skill.level }}</td>
<td style="width: 25%;">{{ skillset.name }}</td>
<td class="keywords">{{ skillset.skills.join(',') }}</td>
</tr>
{% }); %}
</tbody>
@ -131,15 +131,15 @@
</section>
{% } %}
{% if( r.publications && r.publications.length ) { %}
{% if( r.writing && r.writing.length ) { %}
<section id="publications">
<header>
<h2>Publications</h2><hr>
</header>
<span class="fa fa-lg fa-trophy"></span>
{% r.publications.forEach( function( pub, idx, ar) { %}
{% r.writing.forEach( function( pub, idx, ar) { %}
<h4>
{% if( pub.link ) { %}
{% if( pub.url ) { %}
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>,&nbsp;{{ pub.publisher }}
{% } else { %}
<span class="res-label">{{ pub.title }}</span>,&nbsp;{{ pub.publisher }}
@ -153,14 +153,14 @@
</section>
{% } %}
{% if( r.awards && r.awards.length ) { %}
{% if( r.recognition && r.recognition.length ) { %}
<section id="awards">
<header>
<h2>Awards</h2><hr>
</header>
<span class="fa fa-lg fa-trophy"></span>
{% r.awards.forEach( function( award, idx, ar) { %}
<h4><span class="res-label">{{ award.title }}</span>, {{ award.awarder }} <span class="tenure">{{ award.safeDate.format('YYYY') }}</span></h4>
{% r.recognition.forEach( function( award, idx, ar) { %}
<h4><span class="res-label">{{ award.title }}</span>, {{ award.from }} <span class="tenure">{{ award.safe.date.format('YYYY') }}</span></h4>
{{ award.summary|md }}
{% }); %}
</section>
@ -168,4 +168,3 @@
</main>
</body>
</html>

View File

@ -1,3 +1,9 @@
{#
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 }}{% } %}
@ -9,7 +15,7 @@
{% if ( r.skills && r.skills.length ) { %}SKILLS
{% r.skills.forEach( function( skill, idx, ar) { %}
{% r.skills.forEach( function( skill ) { %}
- {{ skill.name }}: {{ skill.level }}
{% }); } %}
@ -17,7 +23,7 @@
{% 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, idx, ar) { %}
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high ) { %}
- {{ high }}
{% }); } }); } %}
@ -25,6 +31,20 @@
{% 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, idx, ar) { %}
{% 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 }}
{% }); } %}