2015-12-19 00:30:59 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<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 rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
2015-12-30 23:02:06 +00:00
|
|
|
{{{styleSheet "modern-html.css"}}}
|
2015-12-19 00:30:59 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main id="main">
|
|
|
|
<div id="container">
|
|
|
|
<header>
|
|
|
|
<h1>{{{ r.name }}}</h1>
|
|
|
|
<div id="contact">
|
2016-01-05 12:56:40 +00:00
|
|
|
{{#has r.contact.email}}<div class="email"><a href="mailto:{{{ RAW.contact.email }}}">{{ RAW.contact.email }}</a></div>{{/has}}
|
|
|
|
{{#has r.contact.phone}}<div class="phone">{{ RAW.contact.phone }}</div>{{/has}}
|
|
|
|
{{#has r.contact.website}}<div class="website"><a href="{{{ RAW.contact.website }}}">{{ RAW.contact.website }}</a></div>{{/has}}
|
2015-12-19 00:30:59 +00:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
|
|
{{#if r.info.brief}}
|
|
|
|
<hr>
|
|
|
|
<section id="summary">
|
2016-01-04 22:07:30 +00:00
|
|
|
<h3>{{{sectionTitle "info" "About"}}}</h3>
|
2015-12-19 00:30:59 +00:00
|
|
|
<span class="fa fa-lg fa-user"></span>
|
|
|
|
{{{ r.info.brief }}}
|
|
|
|
</section>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
|
2016-01-05 12:56:40 +00:00
|
|
|
{{#section 'skills' }}
|
2015-12-19 00:30:59 +00:00
|
|
|
<hr>
|
|
|
|
<section id="skills">
|
|
|
|
<header>
|
2016-01-04 22:07:30 +00:00
|
|
|
<h3>{{{sectionTitle "Skills"}}}</h3>
|
2015-12-19 00:30:59 +00:00
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-code"></span>
|
|
|
|
|
|
|
|
<ul class="list-unstyled">
|
|
|
|
{{#each r.skills.sets}}
|
|
|
|
<li class="card card-nested card-skills">
|
|
|
|
<div class="skill-level" rel="tooltip" title="{{ level }}" data-placement="left">
|
|
|
|
<div class="skill-progress {{toLower level }}"></div>
|
|
|
|
</div>
|
|
|
|
<div class="skill-info">
|
|
|
|
<strong>{{ name }}</strong>
|
|
|
|
<div class="space-top labels">
|
|
|
|
{{#if skills}}
|
|
|
|
{{#each skills}}
|
|
|
|
<span class="label label-keyword">{{ this }}</span>
|
|
|
|
{{/each}}
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
2016-01-05 12:56:40 +00:00
|
|
|
{{/section}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2016-01-05 12:56:40 +00:00
|
|
|
{{#section 'employment'}}
|
2015-12-19 00:30:59 +00:00
|
|
|
<hr>
|
|
|
|
<section id="employment">
|
|
|
|
<header>
|
2016-01-04 22:07:30 +00:00
|
|
|
<h3>{{{sectionTitle "Employment"}}}</h3>
|
2015-12-19 00:30:59 +00:00
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-building"></span>
|
|
|
|
{{#each r.employment.history}}
|
|
|
|
{{#if url}}
|
2016-01-04 20:07:46 +00:00
|
|
|
<h4><span class="res-label">{{ position }}</span>, <a href="{{{ url }}}">{{ employer }}</a></h4>
|
2015-12-19 00:30:59 +00:00
|
|
|
{{else}}
|
|
|
|
<h4><span class="res-label">{{ position }}</span>, <span class="defunct">{{ employer }}</span></h4>
|
|
|
|
{{/if}}
|
|
|
|
<span class="tenure">{{formatDate safe.start 'YYYY-MM' }}—{{formatDate safe.end 'YYYY-MM' }}</span>
|
|
|
|
{{{ summary }}}
|
|
|
|
{{#if proj.highlights}}
|
|
|
|
<ul>
|
|
|
|
{{#each highlights}}
|
2016-01-04 20:07:46 +00:00
|
|
|
<li>{{{ this }}}</li>
|
2015-12-19 00:30:59 +00:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|
|
|
|
{{/each}}
|
|
|
|
|
|
|
|
</section>
|
2016-01-05 12:56:40 +00:00
|
|
|
{{/section}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
2016-01-05 09:50:43 +00:00
|
|
|
{{#section 'projects'}}
|
2016-01-05 05:24:07 +00:00
|
|
|
<hr>
|
|
|
|
<section id="projects">
|
|
|
|
<header>
|
|
|
|
<h3>{{{sectionTitle "Projects"}}}</h3>
|
|
|
|
</header>
|
2016-01-06 11:28:25 +00:00
|
|
|
<span class="fa fa-lg fa-star"></span>
|
2016-01-05 05:24:07 +00:00
|
|
|
{{#each r.projects}}
|
|
|
|
{{#if url}}
|
|
|
|
<h4><span class="res-label">{{ role }}</span>, <a href="{{{ url }}}">{{ title }}</a></h4>
|
|
|
|
{{else}}
|
|
|
|
<h4><span class="res-label">{{ role }}</span>, <span class="defunct">{{ title }}</span></h4>
|
|
|
|
{{/if}}
|
|
|
|
<span class="tenure">{{formatDate safe.start 'YYYY-MM' }}—{{formatDate safe.end 'YYYY-MM' }}</span>
|
|
|
|
{{{ summary }}}
|
|
|
|
{{#if proj.highlights}}
|
|
|
|
<ul>
|
|
|
|
{{#each highlights}}
|
|
|
|
<li>{{{ this }}}</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|
|
|
|
{{/each}}
|
|
|
|
|
|
|
|
</section>
|
2016-01-05 09:50:43 +00:00
|
|
|
{{/section}}
|
2016-01-05 05:24:07 +00:00
|
|
|
|
2016-01-05 11:27:52 +00:00
|
|
|
{{#section 'samples'}}
|
|
|
|
<hr>
|
|
|
|
<section id="samples">
|
|
|
|
<header>
|
|
|
|
<h3>{{{sectionTitle "Samples"}}}</h3>
|
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-building"></span>
|
|
|
|
{{#each r.samples}}
|
|
|
|
{{#if url}}
|
|
|
|
<h4><span class="res-label">{{ role }}</span>, <a href="{{{ url }}}">{{ title }}</a></h4>
|
|
|
|
{{else}}
|
|
|
|
<h4><span class="res-label">{{ role }}</span>, <span class="defunct">{{ title }}</span></h4>
|
|
|
|
{{/if}}
|
|
|
|
<span class="tenure">{{formatDate safe.start 'YYYY-MM' }}—{{formatDate safe.end 'YYYY-MM' }}</span>
|
|
|
|
{{{ summary }}}
|
|
|
|
{{#if proj.highlights}}
|
|
|
|
<ul>
|
|
|
|
{{#each highlights}}
|
|
|
|
<li>{{{ this }}}</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|
|
|
|
{{/each}}
|
|
|
|
|
|
|
|
</section>
|
|
|
|
{{/section}}
|
|
|
|
|
2016-01-05 09:50:43 +00:00
|
|
|
{{#section 'education'}}
|
2015-12-19 00:30:59 +00:00
|
|
|
<hr>
|
|
|
|
<section id="education">
|
|
|
|
<header>
|
2016-01-04 22:07:30 +00:00
|
|
|
<h3>{{{sectionTitle "Education"}}}</h3>
|
2015-12-19 00:30:59 +00:00
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-mortar-board"></span>
|
|
|
|
{{#each r.education.history}}
|
|
|
|
<h4>{{ institution }}</h4>
|
|
|
|
<span class="tenure">{{formatDate safe.start 'YYYY-MM' }}—{{formatDate safe.end 'YYYY-MM' }}</span>
|
|
|
|
{{#if courses}}
|
|
|
|
<ul>
|
|
|
|
{{#each courses}}
|
2016-01-04 20:07:46 +00:00
|
|
|
<li>{{{ this }}}</li>
|
2015-12-19 00:30:59 +00:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|
|
|
|
{{/each}}
|
|
|
|
|
|
|
|
</section>
|
2016-01-05 09:50:43 +00:00
|
|
|
{{/section}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
2016-01-05 12:56:40 +00:00
|
|
|
{{#section 'service'}}
|
2015-12-19 00:30:59 +00:00
|
|
|
<hr>
|
|
|
|
<section id="volunteer">
|
|
|
|
<header>
|
2016-01-04 22:07:30 +00:00
|
|
|
<h3>{{{sectionTitle "Service"}}}</h3>
|
2015-12-19 00:30:59 +00:00
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-child"></span>
|
|
|
|
{{#each r.service.history}}
|
|
|
|
{{#if url}}
|
|
|
|
<h4><span class="res-label">{{ position }}</span>, <a href="{{{ website }}}">{{ organization }}</a></h4>
|
|
|
|
{{else}}
|
|
|
|
<h4><span class="res-label">{{ position }}</span>, <span class="defunct">{{ organization }}</span></h4>
|
|
|
|
{{/if}}
|
|
|
|
<span class="tenure">{{formatDate safe.start 'YYYY-MM'}}—{{formatDate safe.end 'YYYY-MM' }}</span>
|
|
|
|
{{{ summary }}}
|
|
|
|
{{#if highlights}}
|
|
|
|
<ul>
|
|
|
|
{{#each highlights}}
|
2016-01-04 20:07:46 +00:00
|
|
|
<li>{{{ this }}}</li>
|
2015-12-19 00:30:59 +00:00
|
|
|
{{/each}}
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|
|
|
|
{{/each}}
|
|
|
|
|
|
|
|
</section>
|
2016-01-05 12:56:40 +00:00
|
|
|
{{/section}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
2016-01-05 12:56:40 +00:00
|
|
|
{{#section 'writing'}}
|
2015-12-19 00:30:59 +00:00
|
|
|
<hr>
|
|
|
|
<section id="publications">
|
|
|
|
<header>
|
2016-01-04 22:07:30 +00:00
|
|
|
<h3>{{{sectionTitle "writing" "Publications"}}}</h3>
|
2015-12-19 00:30:59 +00:00
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-pencil"></span>
|
|
|
|
{{#each r.writing}}
|
|
|
|
{{#if url}}
|
|
|
|
<h4><a href=""><span class="res-label">{{{ title }}}</span></a>, <span>{{{ publisher.name }}}</span></h4>
|
|
|
|
{{else}}
|
|
|
|
<h4><span class="res-label">{{{ title }}}</span>, <span class="defunct">{{{ publisher.name }}}</span></h4>
|
|
|
|
{{/if}}
|
|
|
|
<span class="tenure">Published on: {{formatDate safe.date 'YYYY-MM'}}</span>
|
|
|
|
{{/each}}
|
|
|
|
</section>
|
2016-01-05 12:56:40 +00:00
|
|
|
{{/section}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
2016-01-05 12:56:40 +00:00
|
|
|
{{#section 'recognition'}}
|
2015-12-19 00:30:59 +00:00
|
|
|
<hr>
|
|
|
|
<section id="awards">
|
|
|
|
<header>
|
2016-01-04 22:07:30 +00:00
|
|
|
<h3>{{{sectionTitle "recognition" "Awards"}}}</h3>
|
2015-12-19 00:30:59 +00:00
|
|
|
</header>
|
|
|
|
<span class="fa fa-lg fa-trophy"></span>
|
|
|
|
{{#each r.recognition}}
|
|
|
|
<h4><span class="res-label">{{{ title }}}</span>, {{{ from }}}</h4>
|
|
|
|
<span class="tenure">{{{ date }}}</span>
|
|
|
|
{{{ summary }}}
|
|
|
|
{{/each}}
|
|
|
|
</section>
|
2016-01-05 12:56:40 +00:00
|
|
|
{{/section}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|