2015-10-06 19:20:47 +01:00
|
|
|
<!DOCTYPE html>
|
2015-10-26 04:40:23 +00:00
|
|
|
<!-- [[[
|
|
|
|
title: Modern (PDF)
|
|
|
|
description: An HTML-driven PDF resume template for FluentCV's "modern" theme.
|
|
|
|
engine: Underscore
|
|
|
|
]]] -->
|
2015-10-06 19:20:47 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2015-11-05 16:36:24 +00:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2015-11-19 03:40:40 +00:00
|
|
|
<title>{{ r.name }}</title>
|
2015-11-05 16:36:24 +00:00
|
|
|
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
|
2015-10-06 19:20:47 +01:00
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
2015-11-05 16:36:24 +00:00
|
|
|
{{ headFragment }}
|
2015-10-06 19:20:47 +01:00
|
|
|
<style>
|
|
|
|
{{ cssInfo.data }}
|
|
|
|
</style>
|
|
|
|
</head>
|
2015-11-05 16:36:24 +00:00
|
|
|
<body>
|
|
|
|
<main id="main">
|
2015-10-06 19:20:47 +01:00
|
|
|
<div id="container">
|
|
|
|
<header>
|
2015-11-19 03:40:40 +00:00
|
|
|
<h1>{{ r.name }}</h1>
|
2015-10-06 19:20:47 +01:00
|
|
|
<div id="contact">
|
2015-11-19 03:40:40 +00:00
|
|
|
{% if (r.contact.email) { %}<div class="email">{{ r.contact.email }}</div>{% } %}
|
|
|
|
{% if (r.contact.phone) { %}<div class="phone">{{ r.contact.phone }}</div>{% } %}
|
|
|
|
{% if (r.contact.website) { %}<div class="website"><a href="{{ r.contact.website }}">{{ r.contact.website }}</a></div>{% } %}
|
2015-10-06 19:20:47 +01:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
2015-11-19 03:40:40 +00:00
|
|
|
{% if ( r.summary && r.summary.length ) { %}
|
2015-10-06 19:20:47 +01:00
|
|
|
<hr>
|
|
|
|
<section id="summary">
|
|
|
|
<h3>About</h3>
|
|
|
|
<span class="fa fa-lg fa-user"></span>
|
2015-11-19 03:40:40 +00:00
|
|
|
{{ r.summary|md }}
|
2015-10-06 19:20:47 +01:00
|
|
|
</section>
|
|
|
|
{% } %}
|
|
|
|
|
|
|
|
|
|
|
|
{% if ( r.skills && r.skills.length ) { %}
|
|
|
|
<hr>
|
|
|
|
<section id="skills">
|
|
|
|
<header>
|
|
|
|
<h3>Skills</h3>
|
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-code"></span>
|
|
|
|
|
|
|
|
<ul class="list-unstyled">
|
|
|
|
{% r.skills.forEach( function(skill) { %}
|
|
|
|
<li class="card card-nested card-skills">
|
2015-11-19 03:40:40 +00:00
|
|
|
<div class="skill-level" rel="tooltip" title="{{ skill.level }}" data-placement="left">
|
|
|
|
<div class="skill-progress {{ skill.level|lower }}">
|
2015-10-06 19:20:47 +01:00
|
|
|
</div>
|
2015-11-19 03:40:40 +00:00
|
|
|
</div>
|
2015-10-06 19:20:47 +01:00
|
|
|
<div class="skill-info">
|
|
|
|
<strong>{{ skill.name }}</strong>
|
|
|
|
<div class="space-top labels">
|
2015-11-05 16:53:17 +00:00
|
|
|
{% if( skill.keywords && skill.keywords.length ) { %}
|
|
|
|
{% skill.keywords.forEach(function(kw) { %}
|
|
|
|
<span class="label label-keyword">{{ kw }}</span>
|
|
|
|
{% }); %}
|
|
|
|
{% } %}
|
2015-10-06 19:20:47 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{% }); %}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
{% } %}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-11-19 03:40:40 +00:00
|
|
|
{% if ( r.employment.history && r.employment.history.length ) { %}
|
2015-10-06 19:20:47 +01:00
|
|
|
<hr>
|
|
|
|
<section id="employment">
|
|
|
|
<header>
|
|
|
|
<h3>Employment</h3>
|
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-building"></span>
|
2015-11-19 03:40:40 +00:00
|
|
|
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
|
|
|
{% if( proj.url && proj.url.length ) { %}
|
|
|
|
<h4><span class="res-label">{{ proj.position }}</span>, <a href="{{ proj.url|raw }}">{{ proj.employer }}</a></h4>
|
2015-10-06 19:20:47 +01:00
|
|
|
{% } else { %}
|
2015-11-19 03:40:40 +00:00
|
|
|
<h4><span class="res-label">{{ proj.position }}</span>, <span class="defunct">{{ proj.employer }}</span></h4>
|
2015-10-06 19:20:47 +01:00
|
|
|
{% } %}
|
2015-11-19 03:40:40 +00:00
|
|
|
<span class="tenure">{{ proj.safe.start.format('YYYY-MM') }}—{{ proj.safe.end.format('YYYY-MM') }}</span>
|
2015-10-06 19:20:47 +01:00
|
|
|
{{ proj.summary|md }}
|
|
|
|
{% if( proj.highlights ) { %}
|
|
|
|
<ul>
|
|
|
|
{% proj.highlights.forEach( function( high, idx, ar) { %}
|
|
|
|
<li>{{ high|mdin }}</li>
|
|
|
|
{% }); %}
|
|
|
|
</ul>
|
|
|
|
{% } %}
|
|
|
|
{% }); %}
|
|
|
|
|
|
|
|
</section>
|
|
|
|
{% } %}
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-11-19 03:40:40 +00:00
|
|
|
{% if ( r.education.history && r.education.history.length ) { %}
|
2015-10-06 19:20:47 +01:00
|
|
|
<hr>
|
|
|
|
<section id="education">
|
|
|
|
<header>
|
|
|
|
<h3>Education</h3>
|
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-mortar-board"></span>
|
2015-11-19 03:40:40 +00:00
|
|
|
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
2015-10-06 19:20:47 +01:00
|
|
|
<h4>{{ edu.institution }}</h4>
|
2015-11-19 03:40:40 +00:00
|
|
|
<span class="tenure">{{ edu.safe.start.format('YYYY-MM') }}—{{ edu.safe.end.format('YYYY-MM') }}</span>
|
2015-10-06 19:20:47 +01:00
|
|
|
{% if( edu.courses ) { %}
|
|
|
|
<ul>
|
|
|
|
{% edu.courses.forEach( function( course, idx, ar) { %}
|
|
|
|
<li>{{ course|mdin }}</li>
|
|
|
|
{% }); %}
|
|
|
|
</ul>
|
|
|
|
{% } %}
|
|
|
|
{% }); %}
|
|
|
|
|
|
|
|
</section>
|
|
|
|
{% } %}
|
|
|
|
|
2015-11-05 16:36:24 +00:00
|
|
|
{% if( r.awards && r.awards.length ) { %}
|
2015-10-06 19:20:47 +01:00
|
|
|
<hr>
|
|
|
|
<section id="awards">
|
|
|
|
<header>
|
|
|
|
<h3>Awards</h3>
|
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-trophy"></span>
|
|
|
|
{% r.awards.forEach( function( award, idx, ar) { %}
|
2015-11-05 16:36:24 +00:00
|
|
|
<h4><span class="res-label">{{ award.title }}</span>, {{ award.awarder }}</h4>
|
2015-10-06 19:20:47 +01:00
|
|
|
<span class="tenure">{{ award.date }}</span>
|
|
|
|
{{ award.summary|md }}
|
|
|
|
{% }); %}
|
|
|
|
</section>
|
|
|
|
{% } %}
|
|
|
|
|
2015-11-05 16:36:24 +00:00
|
|
|
{% if( r.publications && r.publications.length ) { %}
|
2015-10-06 19:20:47 +01:00
|
|
|
<hr>
|
|
|
|
<section id="publications">
|
|
|
|
<header>
|
|
|
|
<h3>Publications</h3>
|
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-trophy"></span>
|
|
|
|
{% r.publications.forEach( function( pub, idx, ar) { %}
|
|
|
|
<h4>
|
2015-11-19 03:40:40 +00:00
|
|
|
{% if( pub.link ) { %}
|
|
|
|
<span class="res-label"><a href="{{ pub.link[0].url }}" ></span>{{ pub.title }}</a>, {{ pub.publisher }}
|
2015-10-06 19:20:47 +01:00
|
|
|
{% } else { %}
|
2015-11-05 16:36:24 +00:00
|
|
|
<span class="res-label">{{ pub.name }}</span>, {{ pub.publisher }}
|
2015-10-06 19:20:47 +01:00
|
|
|
{% } %}
|
|
|
|
</h4>
|
2015-11-19 03:40:40 +00:00
|
|
|
<span class="tenure">Published on: {{ pub.safe.date.format('YYYY-MM') }}</span>
|
|
|
|
|
2015-11-05 16:36:24 +00:00
|
|
|
|
|
|
|
|
2015-10-06 19:20:47 +01:00
|
|
|
{% }); %}
|
|
|
|
</section>
|
|
|
|
{% } %}
|
|
|
|
|
2015-11-19 03:40:40 +00:00
|
|
|
{% if ( r.service.history && r.service.history.length ) { %}
|
2015-10-06 19:20:47 +01:00
|
|
|
<hr>
|
|
|
|
<section id="volunteer">
|
|
|
|
<header>
|
|
|
|
<h3>Volunteer Work</h3>
|
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-child"></span>
|
2015-11-19 03:40:40 +00:00
|
|
|
{% r.service.history.forEach( function( vol, idx, ar) { %}
|
|
|
|
{% if( vol.url && vol.url.length ) { %}
|
2015-11-05 16:36:24 +00:00
|
|
|
<h4><span class="res-label">{{ vol.position }}</span>, <a href="{{ vol.website|raw }}">{{ vol.organization }}</a></h4>
|
2015-10-06 19:20:47 +01:00
|
|
|
{% } else { %}
|
2015-11-05 16:36:24 +00:00
|
|
|
<h4><span class="res-label">{{ vol.position }}</span>, <span class="defunct">{{ vol.organization }}</span></h4>
|
2015-10-06 19:20:47 +01:00
|
|
|
{% } %}
|
2015-11-19 03:40:40 +00:00
|
|
|
<span class="tenure">{{ vol.safe.start.format('YYYY-MM') }}—{{ vol.safe.end.format('YYYY-MM') }}</span>
|
2015-10-06 19:20:47 +01:00
|
|
|
{{ vol.summary|md }}
|
|
|
|
{% if( vol.highlights ) { %}
|
|
|
|
<ul>
|
|
|
|
{% vol.highlights.forEach( function( high, idx, ar) { %}
|
|
|
|
<li>{{ high|mdin }}</li>
|
|
|
|
{% }); %}
|
|
|
|
</ul>
|
|
|
|
{% } %}
|
|
|
|
{% }); %}
|
|
|
|
|
|
|
|
</section>
|
|
|
|
{% } %}
|
|
|
|
|
|
|
|
{% if( r.elevatorPitch ) { %}
|
|
|
|
<hr>
|
|
|
|
<section id='elevator-pitch'>
|
|
|
|
{{ r.elevatorPitch }}
|
|
|
|
</section>
|
|
|
|
{% } %}
|
|
|
|
|
2015-11-05 16:36:24 +00:00
|
|
|
</div>
|
|
|
|
</main>
|
2015-10-06 19:20:47 +01:00
|
|
|
</body>
|
|
|
|
</html>
|