mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-22 16:20:11 +00:00
Update with FRESH format changes.
This commit is contained in:
parent
63cce908ca
commit
c64e6e450a
@ -25,7 +25,7 @@
|
|||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.length ) { %}
|
{% if ( r.skills && r.skills.sets && r.skills.sets.length ) { %}
|
||||||
<section id="skills">
|
<section id="skills">
|
||||||
<header>
|
<header>
|
||||||
<h2>Skills</h2><hr>
|
<h2>Skills</h2><hr>
|
||||||
@ -38,10 +38,10 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% r.skills.forEach( function( skill, idx, ar) { %}
|
{% r.skills.sets.forEach( function( skillset ) { %}
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 25%;">{{ skill.name }}</td>
|
<td style="width: 25%;">{{ skillset.name }}</td>
|
||||||
<td class="keywords">{{ skill.level }}</td>
|
<td class="keywords">{{ skillset.skills.join(',') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</tbody>
|
</tbody>
|
||||||
@ -129,15 +129,15 @@
|
|||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
{% if( r.publications && r.publications.length ) { %}
|
{% if( r.writing && r.writing.length ) { %}
|
||||||
<section id="publications">
|
<section id="publications">
|
||||||
<header>
|
<header>
|
||||||
<h2>Publications</h2><hr>
|
<h2>Publications</h2><hr>
|
||||||
</header>
|
</header>
|
||||||
<span class="fa fa-lg fa-trophy"></span>
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
{% r.publications.forEach( function( pub, idx, ar) { %}
|
{% r.writing.forEach( function( pub, idx, ar) { %}
|
||||||
<h4>
|
<h4>
|
||||||
{% if( pub.link ) { %}
|
{% if( pub.url ) { %}
|
||||||
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>, {{ pub.publisher }}
|
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>, {{ pub.publisher }}
|
||||||
{% } else { %}
|
{% } else { %}
|
||||||
<span class="res-label">{{ pub.title }}</span>, {{ pub.publisher }}
|
<span class="res-label">{{ pub.title }}</span>, {{ pub.publisher }}
|
||||||
@ -151,14 +151,14 @@
|
|||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
{% if( r.awards && r.awards.length ) { %}
|
{% if( r.recognition && r.recognition.length ) { %}
|
||||||
<section id="awards">
|
<section id="awards">
|
||||||
<header>
|
<header>
|
||||||
<h2>Awards</h2><hr>
|
<h2>Awards</h2><hr>
|
||||||
</header>
|
</header>
|
||||||
<span class="fa fa-lg fa-trophy"></span>
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
{% r.awards.forEach( function( award, idx, ar) { %}
|
{% r.recognition.forEach( function( award, idx, ar) { %}
|
||||||
<h4><span class="res-label">{{ award.title }}</span>, {{ award.awarder }} <span class="tenure">{{ award.safeDate.format('YYYY') }}</span></h4>
|
<h4><span class="res-label">{{ award.title }}</span>, {{ award.from }} <span class="tenure">{{ award.safe.date.format('YYYY') }}</span></h4>
|
||||||
{{ award.summary|md }}
|
{{ award.summary|md }}
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</section>
|
</section>
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.length ) { %}
|
{% if ( r.skills && r.skills.sets && r.skills.sets.length ) { %}
|
||||||
<section id="skills">
|
<section id="skills">
|
||||||
<header>
|
<header>
|
||||||
<h2>Skills</h2><hr>
|
<h2>Skills</h2><hr>
|
||||||
@ -40,10 +40,10 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% r.skills.forEach( function( skill, idx, ar) { %}
|
{% r.skills.sets.forEach( function( skillset ) { %}
|
||||||
<tr>
|
<tr>
|
||||||
<td style="width: 25%;">{{ skill.name }}</td>
|
<td style="width: 25%;">{{ skillset.name }}</td>
|
||||||
<td class="keywords">{{ skill.level }}</td>
|
<td class="keywords">{{ skillset.skills.join(',') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</tbody>
|
</tbody>
|
||||||
@ -131,15 +131,15 @@
|
|||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
{% if( r.publications && r.publications.length ) { %}
|
{% if( r.writing && r.writing.length ) { %}
|
||||||
<section id="publications">
|
<section id="publications">
|
||||||
<header>
|
<header>
|
||||||
<h2>Publications</h2><hr>
|
<h2>Publications</h2><hr>
|
||||||
</header>
|
</header>
|
||||||
<span class="fa fa-lg fa-trophy"></span>
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
{% r.publications.forEach( function( pub, idx, ar) { %}
|
{% r.writing.forEach( function( pub, idx, ar) { %}
|
||||||
<h4>
|
<h4>
|
||||||
{% if( pub.link ) { %}
|
{% if( pub.url ) { %}
|
||||||
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>, {{ pub.publisher }}
|
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>, {{ pub.publisher }}
|
||||||
{% } else { %}
|
{% } else { %}
|
||||||
<span class="res-label">{{ pub.title }}</span>, {{ pub.publisher }}
|
<span class="res-label">{{ pub.title }}</span>, {{ pub.publisher }}
|
||||||
@ -153,14 +153,14 @@
|
|||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
{% if( r.awards && r.awards.length ) { %}
|
{% if( r.recognition && r.recognition.length ) { %}
|
||||||
<section id="awards">
|
<section id="awards">
|
||||||
<header>
|
<header>
|
||||||
<h2>Awards</h2><hr>
|
<h2>Awards</h2><hr>
|
||||||
</header>
|
</header>
|
||||||
<span class="fa fa-lg fa-trophy"></span>
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
{% r.awards.forEach( function( award, idx, ar) { %}
|
{% r.recognition.forEach( function( award, idx, ar) { %}
|
||||||
<h4><span class="res-label">{{ award.title }}</span>, {{ award.awarder }} <span class="tenure">{{ award.safeDate.format('YYYY') }}</span></h4>
|
<h4><span class="res-label">{{ award.title }}</span>, {{ award.from }} <span class="tenure">{{ award.safe.date.format('YYYY') }}</span></h4>
|
||||||
{{ award.summary|md }}
|
{{ award.summary|md }}
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</section>
|
</section>
|
||||||
@ -168,4 +168,3 @@
|
|||||||
|
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
{#
|
||||||
|
|
||||||
|
compact/txt.txt
|
||||||
|
A plain text resume template for FluentCV's "compact" theme.
|
||||||
|
|
||||||
|
#}
|
||||||
{{ r.name }}
|
{{ r.name }}
|
||||||
{% if (r.contact.email) { %}Email: {{ r.contact.email }}{% } %}
|
{% if (r.contact.email) { %}Email: {{ r.contact.email }}{% } %}
|
||||||
{% if (r.contact.phone) { %}Tel: {{ r.contact.phone }}{% } %}
|
{% if (r.contact.phone) { %}Tel: {{ r.contact.phone }}{% } %}
|
||||||
@ -9,7 +15,7 @@
|
|||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.length ) { %}SKILLS
|
{% if ( r.skills && r.skills.length ) { %}SKILLS
|
||||||
{% r.skills.forEach( function( skill, idx, ar) { %}
|
{% r.skills.forEach( function( skill ) { %}
|
||||||
- {{ skill.name }}: {{ skill.level }}
|
- {{ skill.name }}: {{ skill.level }}
|
||||||
{% }); } %}
|
{% }); } %}
|
||||||
|
|
||||||
@ -17,7 +23,7 @@
|
|||||||
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
||||||
{{ proj.employer }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
|
{{ proj.employer }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
|
||||||
{{ proj.summary }}
|
{{ proj.summary }}
|
||||||
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high, idx, ar) { %}
|
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high ) { %}
|
||||||
- {{ high }}
|
- {{ high }}
|
||||||
{% }); } }); } %}
|
{% }); } }); } %}
|
||||||
|
|
||||||
@ -25,6 +31,20 @@
|
|||||||
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
||||||
{{ edu.institution }} ({{ edu.safe.start.format('YYYY-MM') }} — {{ edu.safe.end.format('YYYY-MM') }})
|
{{ edu.institution }} ({{ edu.safe.start.format('YYYY-MM') }} — {{ edu.safe.end.format('YYYY-MM') }})
|
||||||
{{ edu.summary }}
|
{{ edu.summary }}
|
||||||
{% if( edu.courses ) { %}{% edu.courses.forEach( function( course, idx, ar) { %}
|
{% if( edu.courses ) { %}{% edu.courses.forEach( function( course ) { %}
|
||||||
- {{ 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 }}
|
||||||
|
{% }); } %}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<!--
|
<!--
|
||||||
[[[
|
[[[
|
||||||
title: Minimist (MS Word)
|
title: Minimist (MS Word)
|
||||||
description: An HTML-driven PDF resume template for FluentCV's "modern" theme.
|
description: An HTML-driven MS Word resume template for FluentCV's "minimist" theme.
|
||||||
engine: Underscore
|
engine: Underscore
|
||||||
]]]
|
]]]
|
||||||
-->
|
-->
|
||||||
@ -753,8 +753,8 @@ engine: Underscore
|
|||||||
<w:gridCol w:w="4428"/>
|
<w:gridCol w:w="4428"/>
|
||||||
</w:tblGrid>
|
</w:tblGrid>
|
||||||
|
|
||||||
{% r.skills.forEach( function( skill, idx, ar) { %}
|
{% r.skills.sets.forEach( function( set, idx, ar) { %}
|
||||||
{% var kwords = skill.summary; %}
|
{% var kwords = set.skills.join(', '); %}
|
||||||
|
|
||||||
<w:tr wsp:rsidR="00427ECC" wsp:rsidTr="00FD3B33">
|
<w:tr wsp:rsidR="00427ECC" wsp:rsidTr="00FD3B33">
|
||||||
<w:tc>
|
<w:tc>
|
||||||
@ -764,7 +764,7 @@ engine: Underscore
|
|||||||
</w:tcPr>
|
</w:tcPr>
|
||||||
<w:p wsp:rsidR="00427ECC" wsp:rsidRDefault="00427ECC" wsp:rsidP="00427ECC">
|
<w:p wsp:rsidR="00427ECC" wsp:rsidRDefault="00427ECC" wsp:rsidP="00427ECC">
|
||||||
<w:r>
|
<w:r>
|
||||||
<w:t>{{ skill.name|xml }}:</w:t>
|
<w:t>{{ set.name|xml }}:</w:t>
|
||||||
</w:r>
|
</w:r>
|
||||||
</w:p>
|
</w:p>
|
||||||
</w:tc>
|
</w:tc>
|
||||||
@ -1012,7 +1012,7 @@ engine: Underscore
|
|||||||
</w:tcPr>
|
</w:tcPr>
|
||||||
<w:p wsp:rsidR="00C61794" wsp:rsidRDefault="00C61794" wsp:rsidP="00023F41">
|
<w:p wsp:rsidR="00C61794" wsp:rsidRDefault="00C61794" wsp:rsidP="00023F41">
|
||||||
<w:r>
|
<w:r>
|
||||||
<w:t>{% print( edu.summary || '' ) %}</w:t>
|
<w:t>TODO</w:t>
|
||||||
</w:r>
|
</w:r>
|
||||||
</w:p>
|
</w:p>
|
||||||
{% edu.curriculum.forEach( function( course, idx, ar) { %}
|
{% edu.curriculum.forEach( function( course, idx, ar) { %}
|
||||||
|
@ -1,13 +1,29 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
<!-- [[[
|
||||||
|
title: Modern (HTML)
|
||||||
|
description: An HTML resume template for FluentCV's "minimist" theme.
|
||||||
|
engine: Underscore
|
||||||
|
]]] -->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>{{ r.name }}</title>
|
<title>{{ r.name }}</title>
|
||||||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic' rel='stylesheet' type='text/css'>
|
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
|
||||||
<link href="resume.css" rel="stylesheet" type="text/css">
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
||||||
|
{{ headFragment }}
|
||||||
|
{% if( cssInfo.file ) { %}
|
||||||
|
<link href="{{ cssInfo.file }}" rel="stylesheet" type="text/css">
|
||||||
|
{% } else { %}
|
||||||
|
<style>
|
||||||
|
{{ cssInfo.data }}
|
||||||
|
</style>
|
||||||
|
{% } %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main>
|
<main id="main">
|
||||||
|
<div id="container">
|
||||||
<header>
|
<header>
|
||||||
<h1>{{ r.name }}</h1>
|
<h1>{{ r.name }}</h1>
|
||||||
<div id="contact">
|
<div id="contact">
|
||||||
@ -17,52 +33,69 @@
|
|||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.info.brief && r.info.brief.length ) { %}
|
{% if ( r.info.brief && r.info.brief.length ) { %}
|
||||||
|
<hr>
|
||||||
<section id="summary">
|
<section id="summary">
|
||||||
|
<h3>About</h3>
|
||||||
|
<span class="fa fa-lg fa-user"></span>
|
||||||
{{ r.info.brief|md }}
|
{{ r.info.brief|md }}
|
||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.length ) { %}
|
{% if ( r.skills && r.skills.sets ) { %}
|
||||||
|
<hr>
|
||||||
<section id="skills">
|
<section id="skills">
|
||||||
<header>
|
<header>
|
||||||
<h2>Skills</h2><hr>
|
<h3>Skills</h3>
|
||||||
</header>
|
</header>
|
||||||
<table>
|
<span class="fa fa-lg fa-code"></span>
|
||||||
<thead>
|
|
||||||
<tr>
|
<ul class="list-unstyled">
|
||||||
<th>Skill</th>
|
{% r.skills.sets.forEach( function(set) { %}
|
||||||
<th>Keywords</th>
|
<li class="card card-nested card-skills">
|
||||||
</tr>
|
<div class="skill-level" rel="tooltip" title="{{ set.level }}" data-placement="left">
|
||||||
</thead>
|
<div class="skill-progress {{ set.level }}"></div>
|
||||||
<tbody>
|
</div>
|
||||||
{% r.skills.forEach( function( skill, idx, ar) { %}
|
<div class="skill-info">
|
||||||
<tr>
|
<strong>{{ set.name }}</strong>
|
||||||
<td style="width: 25%;">{{ skill.name }}</td>
|
<div class="space-top labels">
|
||||||
<td class="keywords">{{ skill.level }}</td>
|
{% if( set.skills && set.skills.length ) { %}
|
||||||
</tr>
|
{% set.skills.forEach(function(kw) { %}
|
||||||
|
<span class="label label-keyword">{{ kw }}</span>
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</tbody>
|
{% } %}
|
||||||
</table>
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
{% }); %}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.employment && r.employment.history && r.employment.history.length ) { %}
|
{% if ( r.employment.history && r.employment.history.length ) { %}
|
||||||
|
<hr>
|
||||||
<section id="employment">
|
<section id="employment">
|
||||||
<header>
|
<header>
|
||||||
<h2>Employment</h2><hr>
|
<h3>Employment</h3>
|
||||||
</header>
|
</header>
|
||||||
|
<span class="fa fa-lg fa-building"></span>
|
||||||
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
||||||
<h3>{{ proj.employer }} <span class="tenure">{{ proj.safe.start.format('YYYY-MM') }}—{{ proj.safe.end.format('YYYY-MM') }}<span></h3>
|
{% if( proj.url && proj.url.length ) { %}
|
||||||
{% if( proj.summary && proj.summary.length ) { %}<p style="clear: both;">{{ proj.summary|md }}</p>{% } %}
|
<h4><span class="res-label">{{ proj.position }}</span>, <a href="{{ proj.url|raw }}">{{ proj.employer }}</a></h4>
|
||||||
|
{% } else { %}
|
||||||
|
<h4><span class="res-label">{{ proj.position }}</span>, <span class="defunct">{{ proj.employer }}</span></h4>
|
||||||
|
{% } %}
|
||||||
|
<span class="tenure">{{ proj.safe.start.format('YYYY-MM') }}—{{ proj.safe.end.format('YYYY-MM') }}</span>
|
||||||
|
{{ proj.summary|md }}
|
||||||
{% if( proj.highlights ) { %}
|
{% if( proj.highlights ) { %}
|
||||||
<ul>
|
<ul>
|
||||||
{% proj.highlights.forEach( function( high, idx, ar) { %}
|
{% proj.highlights.forEach( function( high, idx, ar) { %}
|
||||||
<li>{{ high|md }}</li>
|
<li>{{ high|mdin }}</li>
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</ul>
|
</ul>
|
||||||
{% } %}
|
{% } %}
|
||||||
@ -73,18 +106,85 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.education && r.education.history && r.education.history.length ) { %}
|
{% if ( r.education.history && r.education.history.length ) { %}
|
||||||
|
<hr>
|
||||||
<section id="education">
|
<section id="education">
|
||||||
<header>
|
<header>
|
||||||
<h2>Education</h2><hr>
|
<h3>Education</h3>
|
||||||
</header>
|
</header>
|
||||||
|
<span class="fa fa-lg fa-mortar-board"></span>
|
||||||
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
||||||
<h3>{{ edu.institution }} <span class="tenure">{{ edu.safe.start.format('YYYY-MM') }}—{{ edu.safe.end.format('YYYY-MM') }}<span></h3>
|
<h4>{{ edu.institution }}</h4>
|
||||||
{% if( edu.summary && edu.summary.length ) { %}<p style="clear: both;">{{ edu.summary|md }}</p>{% } %}
|
<span class="tenure">{{ edu.safe.start.format('YYYY-MM') }}—{{ edu.safe.end.format('YYYY-MM') }}</span>
|
||||||
{% if( edu.curriculum ) { %}
|
{% if( edu.courses ) { %}
|
||||||
<ul>
|
<ul>
|
||||||
{% edu.curriculum.forEach( function( course, idx, ar) { %}
|
{% edu.courses.forEach( function( course, idx, ar) { %}
|
||||||
<li>{{ course|md }}</li>
|
<li>{{ course|mdin }}</li>
|
||||||
|
{% }); %}
|
||||||
|
</ul>
|
||||||
|
{% } %}
|
||||||
|
{% }); %}
|
||||||
|
|
||||||
|
</section>
|
||||||
|
{% } %}
|
||||||
|
|
||||||
|
{% if( r.recognition && r.recognition.length ) { %}
|
||||||
|
<hr>
|
||||||
|
<section id="awards">
|
||||||
|
<header>
|
||||||
|
<h3>Awards</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
|
{% r.recognition.forEach( function( award, idx, ar) { %}
|
||||||
|
<h4><span class="res-label">{{ award.title }}</span>, {{ award.from }}</h4>
|
||||||
|
<span class="tenure">{{ award.date }}</span>
|
||||||
|
{{ award.summary|md }}
|
||||||
|
{% }); %}
|
||||||
|
</section>
|
||||||
|
{% } %}
|
||||||
|
|
||||||
|
{% if( r.writing && r.writing.length ) { %}
|
||||||
|
<hr>
|
||||||
|
<section id="publications">
|
||||||
|
<header>
|
||||||
|
<h3>Publications</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
|
{% r.writing.forEach( function( pub, idx, ar) { %}
|
||||||
|
<h4>
|
||||||
|
{% if( pub.url ) { %}
|
||||||
|
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>, {{ pub.publisher }}
|
||||||
|
{% } else { %}
|
||||||
|
<span class="res-label">{{ pub.name }}</span>, {{ pub.publisher }}
|
||||||
|
{% } %}
|
||||||
|
</h4>
|
||||||
|
<span class="tenure">Published on: {{ pub.safe.date.format('YYYY-MM') }}</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{% }); %}
|
||||||
|
</section>
|
||||||
|
{% } %}
|
||||||
|
|
||||||
|
{% if ( r.service.history && r.service.history.length ) { %}
|
||||||
|
<hr>
|
||||||
|
<section id="volunteer">
|
||||||
|
<header>
|
||||||
|
<h3>Volunteer Work</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-child"></span>
|
||||||
|
{% r.service.history.forEach( function( vol, idx, ar) { %}
|
||||||
|
{% if( vol.url && vol.url.length ) { %}
|
||||||
|
<h4><span class="res-label">{{ vol.position }}</span>, <a href="{{ vol.website|raw }}">{{ vol.organization }}</a></h4>
|
||||||
|
{% } else { %}
|
||||||
|
<h4><span class="res-label">{{ vol.position }}</span>, <span class="defunct">{{ vol.organization }}</span></h4>
|
||||||
|
{% } %}
|
||||||
|
<span class="tenure">{{ vol.safe.start.format('YYYY-MM') }}—{{ vol.safe.end.format('YYYY-MM') }}</span>
|
||||||
|
{{ vol.summary|md }}
|
||||||
|
{% if( vol.highlights ) { %}
|
||||||
|
<ul>
|
||||||
|
{% vol.highlights.forEach( function( high, idx, ar) { %}
|
||||||
|
<li>{{ high|mdin }}</li>
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</ul>
|
</ul>
|
||||||
{% } %}
|
{% } %}
|
||||||
@ -94,6 +194,7 @@
|
|||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{#
|
{#
|
||||||
|
|
||||||
modern/md.txt
|
minimist/md.txt
|
||||||
A Markdown resume template for FluentCV's "minimist" theme.
|
A Markdown resume template for FluentCV's "minimist" theme.
|
||||||
|
|
||||||
#}
|
#}
|
||||||
@ -12,10 +12,10 @@
|
|||||||
|
|
||||||
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
|
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.length ) { %}
|
{% if ( r.skills && r.skills.sets ) { %}
|
||||||
## Skills
|
## Skills
|
||||||
{% r.skills.forEach( function( skill, idx, ar) { %}
|
{% r.skills.sets.forEach( function( set, idx, ar) { %}
|
||||||
- **{{ skill.name }}**: {{ skill.level }}
|
- **{{ set.name }}**: {{ set.level }}
|
||||||
{% }); } %}
|
{% }); } %}
|
||||||
|
|
||||||
{% if ( r.employment.history && r.employment.history.length ) { %}
|
{% if ( r.employment.history && r.employment.history.length ) { %}
|
||||||
@ -36,9 +36,9 @@
|
|||||||
- {{ course }}
|
- {{ course }}
|
||||||
{% }); } }); } %}
|
{% }); } }); } %}
|
||||||
|
|
||||||
{% if ( r.publications && r.publications.length ) { %}
|
{% if ( r.writing && r.writing.length ) { %}
|
||||||
## Publications
|
## Publications
|
||||||
{% r.publications.forEach( function( pub, idx, ar) { %}
|
{% r.writing.forEach( function( pub, idx, ar) { %}
|
||||||
### {{ pub.title }} ({{ pub.safe.date.format('MMM YYYY') }})
|
### {{ pub.title }} ({{ pub.safe.date.format('MMM YYYY') }})
|
||||||
{{ pub.publisher }}
|
{{ pub.publisher }}
|
||||||
{{ pub.summary }}
|
{{ pub.summary }}
|
||||||
@ -51,9 +51,9 @@
|
|||||||
{{ vol.summary }}
|
{{ vol.summary }}
|
||||||
{% }); } %}
|
{% }); } %}
|
||||||
|
|
||||||
{% if ( r.awards && r.awards.length ) { %}
|
{% if ( r.recognition && r.recognition.length ) { %}
|
||||||
## Awards
|
## Recognition
|
||||||
{% r.awards.forEach( function( awd, idx, ar) { %}
|
{% r.recognition.forEach( function( awd, idx, ar) { %}
|
||||||
### *{{ awd.title }}*, {{ awd.awarder }} ({{ awd.safeDate.format('MMM YYYY') }})
|
### *{{ awd.title }}*, {{ awd.from }} ({{ awd.safe.date.format('MMM YYYY') }})
|
||||||
{{ awd.summary }}
|
{{ awd.summary }}
|
||||||
{% }); } %}
|
{% }); } %}
|
||||||
|
@ -1,15 +1,25 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
<!-- [[[
|
||||||
|
title: Modern (PDF)
|
||||||
|
description: An HTML-driven PDF resume template for FluentCV's "minimist" theme.
|
||||||
|
engine: Underscore
|
||||||
|
]]] -->
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>{{ r.name }}</title>
|
<title>{{ r.name }}</title>
|
||||||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic' rel='stylesheet' type='text/css'>
|
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
|
||||||
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
||||||
|
{{ headFragment }}
|
||||||
<style>
|
<style>
|
||||||
{{ cssInfo.data }}
|
{{ cssInfo.data }}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main>
|
<main id="main">
|
||||||
|
<div id="container">
|
||||||
<header>
|
<header>
|
||||||
<h1>{{ r.name }}</h1>
|
<h1>{{ r.name }}</h1>
|
||||||
<div id="contact">
|
<div id="contact">
|
||||||
@ -19,52 +29,69 @@
|
|||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.info.brief && r.info.brief.length ) { %}
|
{% if ( r.info.brief && r.info.brief.length ) { %}
|
||||||
|
<hr>
|
||||||
<section id="summary">
|
<section id="summary">
|
||||||
|
<h3>About</h3>
|
||||||
|
<span class="fa fa-lg fa-user"></span>
|
||||||
{{ r.info.brief|md }}
|
{{ r.info.brief|md }}
|
||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.length ) { %}
|
{% if ( r.skills && r.skills.sets ) { %}
|
||||||
|
<hr>
|
||||||
<section id="skills">
|
<section id="skills">
|
||||||
<header>
|
<header>
|
||||||
<h2>Skills</h2><hr>
|
<h3>Skills</h3>
|
||||||
</header>
|
</header>
|
||||||
<table>
|
<span class="fa fa-lg fa-code"></span>
|
||||||
<thead>
|
|
||||||
<tr>
|
<ul class="list-unstyled">
|
||||||
<th>Skill</th>
|
{% r.skills.sets.forEach( function(set) { %}
|
||||||
<th>Keywords</th>
|
<li class="card card-nested card-skills">
|
||||||
</tr>
|
<div class="skill-level" rel="tooltip" title="{{ set.level }}" data-placement="left">
|
||||||
</thead>
|
<div class="skill-progress {{ set.level }}"></div>
|
||||||
<tbody>
|
</div>
|
||||||
{% r.skills.forEach( function( skill, idx, ar) { %}
|
<div class="skill-info">
|
||||||
<tr>
|
<strong>{{ set.name }}</strong>
|
||||||
<td style="width: 25%;">{{ skill.name }}</td>
|
<div class="space-top labels">
|
||||||
<td class="keywords">{{ skill.level }}</td>
|
{% if( set.skills && set.skills.length ) { %}
|
||||||
</tr>
|
{% set.skills.forEach(function(kw) { %}
|
||||||
|
<span class="label label-keyword">{{ kw }}</span>
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</tbody>
|
{% } %}
|
||||||
</table>
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
{% }); %}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.employment && r.employment.history && r.employment.history.length ) { %}
|
{% if ( r.employment.history && r.employment.history.length ) { %}
|
||||||
|
<hr>
|
||||||
<section id="employment">
|
<section id="employment">
|
||||||
<header>
|
<header>
|
||||||
<h2>Employment</h2><hr>
|
<h3>Employment</h3>
|
||||||
</header>
|
</header>
|
||||||
|
<span class="fa fa-lg fa-building"></span>
|
||||||
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
||||||
<h3>{{ proj.employer }} <span class="tenure">{{ proj.safe.start.format('YYYY-MM') }}—{{ proj.safe.end.format('YYYY-MM') }}<span></h3>
|
{% if( proj.url && proj.url.length ) { %}
|
||||||
{% if( proj.summary && proj.summary.length ) { %}<p style="clear: both;">{{ proj.summary|md }}</p>{% } %}
|
<h4><span class="res-label">{{ proj.position }}</span>, <a href="{{ proj.url|raw }}">{{ proj.employer }}</a></h4>
|
||||||
|
{% } else { %}
|
||||||
|
<h4><span class="res-label">{{ proj.position }}</span>, <span class="defunct">{{ proj.employer }}</span></h4>
|
||||||
|
{% } %}
|
||||||
|
<span class="tenure">{{ proj.safe.start.format('YYYY-MM') }}—{{ proj.safe.end.format('YYYY-MM') }}</span>
|
||||||
|
{{ proj.summary|md }}
|
||||||
{% if( proj.highlights ) { %}
|
{% if( proj.highlights ) { %}
|
||||||
<ul>
|
<ul>
|
||||||
{% proj.highlights.forEach( function( high, idx, ar) { %}
|
{% proj.highlights.forEach( function( high, idx, ar) { %}
|
||||||
<li>{{ high|md }}</li>
|
<li>{{ high|mdin }}</li>
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</ul>
|
</ul>
|
||||||
{% } %}
|
{% } %}
|
||||||
@ -75,18 +102,85 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.education && r.education.history && r.education.history.length ) { %}
|
{% if ( r.education.history && r.education.history.length ) { %}
|
||||||
|
<hr>
|
||||||
<section id="education">
|
<section id="education">
|
||||||
<header>
|
<header>
|
||||||
<h2>Education</h2><hr>
|
<h3>Education</h3>
|
||||||
</header>
|
</header>
|
||||||
|
<span class="fa fa-lg fa-mortar-board"></span>
|
||||||
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
||||||
<h3>{{ edu.institution }} <span class="tenure">{{ edu.safe.start.format('YYYY-MM') }}—{{ edu.safe.end.format('YYYY-MM') }}<span></h3>
|
<h4>{{ edu.institution }}</h4>
|
||||||
{% if( edu.summary && edu.summary.length ) { %}<p style="clear: both;">{{ edu.summary|md }}</p>{% } %}
|
<span class="tenure">{{ edu.safe.start.format('YYYY-MM') }}—{{ edu.safe.end.format('YYYY-MM') }}</span>
|
||||||
{% if( edu.curriculum ) { %}
|
{% if( edu.courses ) { %}
|
||||||
<ul>
|
<ul>
|
||||||
{% edu.curriculum.forEach( function( course, idx, ar) { %}
|
{% edu.courses.forEach( function( course, idx, ar) { %}
|
||||||
<li>{{ course|md }}</li>
|
<li>{{ course|mdin }}</li>
|
||||||
|
{% }); %}
|
||||||
|
</ul>
|
||||||
|
{% } %}
|
||||||
|
{% }); %}
|
||||||
|
|
||||||
|
</section>
|
||||||
|
{% } %}
|
||||||
|
|
||||||
|
{% if( r.recognition && r.recognition.length ) { %}
|
||||||
|
<hr>
|
||||||
|
<section id="awards">
|
||||||
|
<header>
|
||||||
|
<h3>Awards</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
|
{% r.recognition.forEach( function( award, idx, ar) { %}
|
||||||
|
<h4><span class="res-label">{{ award.title }}</span>, {{ award.from }}</h4>
|
||||||
|
<span class="tenure">{{ award.date }}</span>
|
||||||
|
{{ award.summary|md }}
|
||||||
|
{% }); %}
|
||||||
|
</section>
|
||||||
|
{% } %}
|
||||||
|
|
||||||
|
{% if( r.writing && r.writing.length ) { %}
|
||||||
|
<hr>
|
||||||
|
<section id="publications">
|
||||||
|
<header>
|
||||||
|
<h3>Publications</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
|
{% r.writing.forEach( function( pub, idx, ar) { %}
|
||||||
|
<h4>
|
||||||
|
{% if( pub.url ) { %}
|
||||||
|
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>, {{ pub.publisher }}
|
||||||
|
{% } else { %}
|
||||||
|
<span class="res-label">{{ pub.name }}</span>, {{ pub.publisher }}
|
||||||
|
{% } %}
|
||||||
|
</h4>
|
||||||
|
<span class="tenure">Published on: {{ pub.safe.date.format('YYYY-MM') }}</span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{% }); %}
|
||||||
|
</section>
|
||||||
|
{% } %}
|
||||||
|
|
||||||
|
{% if ( r.service.history && r.service.history.length ) { %}
|
||||||
|
<hr>
|
||||||
|
<section id="volunteer">
|
||||||
|
<header>
|
||||||
|
<h3>Volunteer Work</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-child"></span>
|
||||||
|
{% r.service.history.forEach( function( vol, idx, ar) { %}
|
||||||
|
{% if( vol.url && vol.url.length ) { %}
|
||||||
|
<h4><span class="res-label">{{ vol.position }}</span>, <a href="{{ vol.website|raw }}">{{ vol.organization }}</a></h4>
|
||||||
|
{% } else { %}
|
||||||
|
<h4><span class="res-label">{{ vol.position }}</span>, <span class="defunct">{{ vol.organization }}</span></h4>
|
||||||
|
{% } %}
|
||||||
|
<span class="tenure">{{ vol.safe.start.format('YYYY-MM') }}—{{ vol.safe.end.format('YYYY-MM') }}</span>
|
||||||
|
{{ vol.summary|md }}
|
||||||
|
{% if( vol.highlights ) { %}
|
||||||
|
<ul>
|
||||||
|
{% vol.highlights.forEach( function( high, idx, ar) { %}
|
||||||
|
<li>{{ high|mdin }}</li>
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</ul>
|
</ul>
|
||||||
{% } %}
|
{% } %}
|
||||||
@ -96,6 +190,7 @@
|
|||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -14,16 +14,20 @@
|
|||||||
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
|
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.length ) { %}SKILLS
|
{% if ( r.skills && r.skills.sets && r.skills.sets.length ) { %}SKILLS
|
||||||
{% r.skills.forEach( function( skill, idx, ar) { %}
|
{% r.skills.sets.forEach( function( set ) { %}
|
||||||
- {{ skill.name }}: {{ skill.level }}
|
- {{ set.name }}: {% set.skills.forEach(function(sk){ %}{{ sk }}, {% }); %}
|
||||||
{% }); } %}
|
{{ set.level }}
|
||||||
|
{% }); %}
|
||||||
|
{% } else if( r.skills && r.skills.list && r.skills.list.length ) { %}
|
||||||
|
|
||||||
{% if ( r.employment.history && r.employment.history.length ) { %}EMPLOYMENT
|
{% } %}
|
||||||
|
|
||||||
|
{% if ( r.employment && r.employment.history ) { %}EMPLOYMENT
|
||||||
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
||||||
{{ proj.employer }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
|
{{ proj.employer }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
|
||||||
{{ proj.summary }}
|
{{ proj.summary }}
|
||||||
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high, idx, ar) { %}
|
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high ) { %}
|
||||||
- {{ high }}
|
- {{ high }}
|
||||||
{% }); } }); } %}
|
{% }); } }); } %}
|
||||||
|
|
||||||
@ -31,6 +35,20 @@
|
|||||||
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
||||||
{{ edu.institution }} ({{ edu.safe.start.format('YYYY-MM') }} — {{ edu.safe.end.format('YYYY-MM') }})
|
{{ edu.institution }} ({{ edu.safe.start.format('YYYY-MM') }} — {{ edu.safe.end.format('YYYY-MM') }})
|
||||||
{{ edu.summary }}
|
{{ edu.summary }}
|
||||||
{% if( edu.courses ) { %}{% edu.courses.forEach( function( course, idx, ar) { %}
|
{% if( edu.courses ) { %}{% edu.courses.forEach( function( course ) { %}
|
||||||
- {{ 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 }}
|
||||||
|
{% }); } %}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!--
|
<!--
|
||||||
[[[
|
[[[
|
||||||
title: Modern (PDF)
|
title: Modern (MS Word)
|
||||||
description: An HTML-driven PDF resume template for FluentCV's "modern" theme.
|
description: An HTML-driven MS Word resume template for FluentCV's "modern" theme.
|
||||||
engine: Underscore
|
engine: Underscore
|
||||||
]]]
|
]]]
|
||||||
-->
|
-->
|
||||||
@ -753,8 +753,8 @@ engine: Underscore
|
|||||||
<w:gridCol w:w="4428"/>
|
<w:gridCol w:w="4428"/>
|
||||||
</w:tblGrid>
|
</w:tblGrid>
|
||||||
|
|
||||||
{% r.skills.forEach( function( skill, idx, ar) { %}
|
{% r.skills.sets.forEach( function( set, idx, ar) { %}
|
||||||
{% var kwords = skill.summary; %}
|
{% var kwords = set.skills.join(', '); %}
|
||||||
|
|
||||||
<w:tr wsp:rsidR="00427ECC" wsp:rsidTr="00FD3B33">
|
<w:tr wsp:rsidR="00427ECC" wsp:rsidTr="00FD3B33">
|
||||||
<w:tc>
|
<w:tc>
|
||||||
@ -764,7 +764,7 @@ engine: Underscore
|
|||||||
</w:tcPr>
|
</w:tcPr>
|
||||||
<w:p wsp:rsidR="00427ECC" wsp:rsidRDefault="00427ECC" wsp:rsidP="00427ECC">
|
<w:p wsp:rsidR="00427ECC" wsp:rsidRDefault="00427ECC" wsp:rsidP="00427ECC">
|
||||||
<w:r>
|
<w:r>
|
||||||
<w:t>{{ skill.name|xml }}:</w:t>
|
<w:t>{{ set.name|xml }}:</w:t>
|
||||||
</w:r>
|
</w:r>
|
||||||
</w:p>
|
</w:p>
|
||||||
</w:tc>
|
</w:tc>
|
||||||
|
@ -43,7 +43,7 @@ engine: Underscore
|
|||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.length ) { %}
|
{% if ( r.skills && r.skills.sets ) { %}
|
||||||
<hr>
|
<hr>
|
||||||
<section id="skills">
|
<section id="skills">
|
||||||
<header>
|
<header>
|
||||||
@ -52,16 +52,16 @@ engine: Underscore
|
|||||||
<span class="fa fa-lg fa-code"></span>
|
<span class="fa fa-lg fa-code"></span>
|
||||||
|
|
||||||
<ul class="list-unstyled">
|
<ul class="list-unstyled">
|
||||||
{% r.skills.forEach( function(skill) { %}
|
{% r.skills.sets.forEach( function(set) { %}
|
||||||
<li class="card card-nested card-skills">
|
<li class="card card-nested card-skills">
|
||||||
<div class="skill-level" rel="tooltip" title="{{ skill.level }}" data-placement="left">
|
<div class="skill-level" rel="tooltip" title="{{ set.level }}" data-placement="left">
|
||||||
<div class="skill-progress {{ skill.level }}"></div>
|
<div class="skill-progress {{ set.level }}"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="skill-info">
|
<div class="skill-info">
|
||||||
<strong>{{ skill.name }}</strong>
|
<strong>{{ set.name }}</strong>
|
||||||
<div class="space-top labels">
|
<div class="space-top labels">
|
||||||
{% if( skill.keywords && skill.keywords.length ) { %}
|
{% if( set.skills && set.skills.length ) { %}
|
||||||
{% skill.keywords.forEach(function(kw) { %}
|
{% set.skills.forEach(function(kw) { %}
|
||||||
<span class="label label-keyword">{{ kw }}</span>
|
<span class="label label-keyword">{{ kw }}</span>
|
||||||
{% }); %}
|
{% }); %}
|
||||||
{% } %}
|
{% } %}
|
||||||
@ -128,31 +128,31 @@ engine: Underscore
|
|||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
{% if( r.awards && r.awards.length ) { %}
|
{% if( r.recognition && r.recognition.length ) { %}
|
||||||
<hr>
|
<hr>
|
||||||
<section id="awards">
|
<section id="awards">
|
||||||
<header>
|
<header>
|
||||||
<h3>Awards</h3>
|
<h3>Awards</h3>
|
||||||
</header>
|
</header>
|
||||||
<span class="fa fa-lg fa-trophy"></span>
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
{% r.awards.forEach( function( award, idx, ar) { %}
|
{% r.recognition.forEach( function( award, idx, ar) { %}
|
||||||
<h4><span class="res-label">{{ award.title }}</span>, {{ award.awarder }}</h4>
|
<h4><span class="res-label">{{ award.title }}</span>, {{ award.from }}</h4>
|
||||||
<span class="tenure">{{ award.date }}</span>
|
<span class="tenure">{{ award.date }}</span>
|
||||||
{{ award.summary|md }}
|
{{ award.summary|md }}
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
{% if( r.publications && r.publications.length ) { %}
|
{% if( r.writing && r.writing.length ) { %}
|
||||||
<hr>
|
<hr>
|
||||||
<section id="publications">
|
<section id="publications">
|
||||||
<header>
|
<header>
|
||||||
<h3>Publications</h3>
|
<h3>Publications</h3>
|
||||||
</header>
|
</header>
|
||||||
<span class="fa fa-lg fa-trophy"></span>
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
{% r.publications.forEach( function( pub, idx, ar) { %}
|
{% r.writing.forEach( function( pub, idx, ar) { %}
|
||||||
<h4>
|
<h4>
|
||||||
{% if( pub.link ) { %}
|
{% if( pub.url ) { %}
|
||||||
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>, {{ pub.publisher }}
|
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>, {{ pub.publisher }}
|
||||||
{% } else { %}
|
{% } else { %}
|
||||||
<span class="res-label">{{ pub.name }}</span>, {{ pub.publisher }}
|
<span class="res-label">{{ pub.name }}</span>, {{ pub.publisher }}
|
||||||
@ -193,12 +193,6 @@ engine: Underscore
|
|||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
{% if( r.elevatorPitch ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id='elevator-pitch'>
|
|
||||||
{{ r.elevatorPitch }}
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
@ -12,10 +12,10 @@
|
|||||||
|
|
||||||
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
|
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.length ) { %}
|
{% if ( r.skills && r.skills.sets ) { %}
|
||||||
## Skills
|
## Skills
|
||||||
{% r.skills.forEach( function( skill, idx, ar) { %}
|
{% r.skills.sets.forEach( function( set, idx, ar) { %}
|
||||||
- **{{ skill.name }}**: {{ skill.level }}
|
- **{{ set.name }}**: {{ set.level }}
|
||||||
{% }); } %}
|
{% }); } %}
|
||||||
|
|
||||||
{% if ( r.employment.history && r.employment.history.length ) { %}
|
{% if ( r.employment.history && r.employment.history.length ) { %}
|
||||||
@ -36,9 +36,9 @@
|
|||||||
- {{ course }}
|
- {{ course }}
|
||||||
{% }); } }); } %}
|
{% }); } }); } %}
|
||||||
|
|
||||||
{% if ( r.publications && r.publications.length ) { %}
|
{% if ( r.writing && r.writing.length ) { %}
|
||||||
## Publications
|
## Publications
|
||||||
{% r.publications.forEach( function( pub, idx, ar) { %}
|
{% r.writing.forEach( function( pub, idx, ar) { %}
|
||||||
### {{ pub.title }} ({{ pub.safe.date.format('MMM YYYY') }})
|
### {{ pub.title }} ({{ pub.safe.date.format('MMM YYYY') }})
|
||||||
{{ pub.publisher }}
|
{{ pub.publisher }}
|
||||||
{{ pub.summary }}
|
{{ pub.summary }}
|
||||||
@ -51,9 +51,9 @@
|
|||||||
{{ vol.summary }}
|
{{ vol.summary }}
|
||||||
{% }); } %}
|
{% }); } %}
|
||||||
|
|
||||||
{% if ( r.awards && r.awards.length ) { %}
|
{% if ( r.recognition && r.recognition.length ) { %}
|
||||||
## Awards
|
## Recognition
|
||||||
{% r.awards.forEach( function( awd, idx, ar) { %}
|
{% r.recognition.forEach( function( awd, idx, ar) { %}
|
||||||
### *{{ awd.title }}*, {{ awd.awarder }} ({{ awd.safeDate.format('MMM YYYY') }})
|
### *{{ awd.title }}*, {{ awd.from }} ({{ awd.safe.date.format('MMM YYYY') }})
|
||||||
{{ awd.summary }}
|
{{ awd.summary }}
|
||||||
{% }); } %}
|
{% }); } %}
|
||||||
|
@ -39,7 +39,7 @@ engine: Underscore
|
|||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.length ) { %}
|
{% if ( r.skills && r.skills.sets ) { %}
|
||||||
<hr>
|
<hr>
|
||||||
<section id="skills">
|
<section id="skills">
|
||||||
<header>
|
<header>
|
||||||
@ -48,16 +48,16 @@ engine: Underscore
|
|||||||
<span class="fa fa-lg fa-code"></span>
|
<span class="fa fa-lg fa-code"></span>
|
||||||
|
|
||||||
<ul class="list-unstyled">
|
<ul class="list-unstyled">
|
||||||
{% r.skills.forEach( function(skill) { %}
|
{% r.skills.sets.forEach( function(set) { %}
|
||||||
<li class="card card-nested card-skills">
|
<li class="card card-nested card-skills">
|
||||||
<div class="skill-level" rel="tooltip" title="{{ skill.level }}" data-placement="left">
|
<div class="skill-level" rel="tooltip" title="{{ set.level }}" data-placement="left">
|
||||||
<div class="skill-progress {{ skill.level }}"></div>
|
<div class="skill-progress {{ set.level }}"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="skill-info">
|
<div class="skill-info">
|
||||||
<strong>{{ skill.name }}</strong>
|
<strong>{{ set.name }}</strong>
|
||||||
<div class="space-top labels">
|
<div class="space-top labels">
|
||||||
{% if( skill.keywords && skill.keywords.length ) { %}
|
{% if( set.skills && set.skills.length ) { %}
|
||||||
{% skill.keywords.forEach(function(kw) { %}
|
{% set.skills.forEach(function(kw) { %}
|
||||||
<span class="label label-keyword">{{ kw }}</span>
|
<span class="label label-keyword">{{ kw }}</span>
|
||||||
{% }); %}
|
{% }); %}
|
||||||
{% } %}
|
{% } %}
|
||||||
@ -124,31 +124,31 @@ engine: Underscore
|
|||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
{% if( r.awards && r.awards.length ) { %}
|
{% if( r.recognition && r.recognition.length ) { %}
|
||||||
<hr>
|
<hr>
|
||||||
<section id="awards">
|
<section id="awards">
|
||||||
<header>
|
<header>
|
||||||
<h3>Awards</h3>
|
<h3>Awards</h3>
|
||||||
</header>
|
</header>
|
||||||
<span class="fa fa-lg fa-trophy"></span>
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
{% r.awards.forEach( function( award, idx, ar) { %}
|
{% r.recognition.forEach( function( award, idx, ar) { %}
|
||||||
<h4><span class="res-label">{{ award.title }}</span>, {{ award.awarder }}</h4>
|
<h4><span class="res-label">{{ award.title }}</span>, {{ award.from }}</h4>
|
||||||
<span class="tenure">{{ award.date }}</span>
|
<span class="tenure">{{ award.date }}</span>
|
||||||
{{ award.summary|md }}
|
{{ award.summary|md }}
|
||||||
{% }); %}
|
{% }); %}
|
||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
{% if( r.publications && r.publications.length ) { %}
|
{% if( r.writing && r.writing.length ) { %}
|
||||||
<hr>
|
<hr>
|
||||||
<section id="publications">
|
<section id="publications">
|
||||||
<header>
|
<header>
|
||||||
<h3>Publications</h3>
|
<h3>Publications</h3>
|
||||||
</header>
|
</header>
|
||||||
<span class="fa fa-lg fa-trophy"></span>
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
{% r.publications.forEach( function( pub, idx, ar) { %}
|
{% r.writing.forEach( function( pub, idx, ar) { %}
|
||||||
<h4>
|
<h4>
|
||||||
{% if( pub.link ) { %}
|
{% if( pub.url ) { %}
|
||||||
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>, {{ pub.publisher }}
|
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>, {{ pub.publisher }}
|
||||||
{% } else { %}
|
{% } else { %}
|
||||||
<span class="res-label">{{ pub.name }}</span>, {{ pub.publisher }}
|
<span class="res-label">{{ pub.name }}</span>, {{ pub.publisher }}
|
||||||
@ -189,12 +189,6 @@ engine: Underscore
|
|||||||
</section>
|
</section>
|
||||||
{% } %}
|
{% } %}
|
||||||
|
|
||||||
{% if( r.elevatorPitch ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id='elevator-pitch'>
|
|
||||||
{{ r.elevatorPitch }}
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
@ -14,16 +14,20 @@
|
|||||||
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
|
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.length ) { %}SKILLS
|
{% if ( r.skills && r.skills.sets && r.skills.sets.length ) { %}SKILLS
|
||||||
{% r.skills.forEach( function( skill, idx, ar) { %}
|
{% r.skills.sets.forEach( function( set ) { %}
|
||||||
- {{ skill.name }}: {{ skill.level }}
|
- {{ set.name }}: {% set.skills.forEach(function(sk){ %}{{ sk }}, {% }); %}
|
||||||
{% }); } %}
|
{{ set.level }}
|
||||||
|
{% }); %}
|
||||||
|
{% } else if( r.skills && r.skills.list && r.skills.list.length ) { %}
|
||||||
|
|
||||||
{% if ( r.employment.history && r.employment.history.length ) { %}EMPLOYMENT
|
{% } %}
|
||||||
|
|
||||||
|
{% if ( r.employment && r.employment.history ) { %}EMPLOYMENT
|
||||||
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
||||||
{{ proj.employer }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
|
{{ proj.employer }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
|
||||||
{{ proj.summary }}
|
{{ proj.summary }}
|
||||||
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high, idx, ar) { %}
|
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high ) { %}
|
||||||
- {{ high }}
|
- {{ high }}
|
||||||
{% }); } }); } %}
|
{% }); } }); } %}
|
||||||
|
|
||||||
@ -31,6 +35,20 @@
|
|||||||
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
||||||
{{ edu.institution }} ({{ edu.safe.start.format('YYYY-MM') }} — {{ edu.safe.end.format('YYYY-MM') }})
|
{{ edu.institution }} ({{ edu.safe.start.format('YYYY-MM') }} — {{ edu.safe.end.format('YYYY-MM') }})
|
||||||
{{ edu.summary }}
|
{{ edu.summary }}
|
||||||
{% if( edu.courses ) { %}{% edu.courses.forEach( function( course, idx, ar) { %}
|
{% if( edu.courses ) { %}{% edu.courses.forEach( function( course ) { %}
|
||||||
- {{ 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 }}
|
||||||
|
{% }); } %}
|
||||||
|
Loading…
Reference in New Issue
Block a user