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-11 04:30:35 +00:00
|
|
|
<h2>{{{sectionTitle "info" "About"}}}</h2>
|
2015-12-19 00:30:59 +00:00
|
|
|
<span class="fa fa-lg fa-user"></span>
|
|
|
|
{{{ r.info.brief }}}
|
|
|
|
</section>
|
|
|
|
{{/if}}
|
|
|
|
|
2016-01-11 15:17:54 +00:00
|
|
|
{{!<!-- A custom skills section with colored skill bars. -->}}
|
|
|
|
|
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-11 04:30:35 +00:00
|
|
|
<h2>{{{sectionTitle "Skills"}}}</h2>
|
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-11 14:31:13 +00:00
|
|
|
|
2016-01-11 04:30:35 +00:00
|
|
|
{{#*inline "icon-employment"}}<span class="fa fa-lg fa-building"></span>{{/inline}}
|
2016-01-13 02:29:30 +00:00
|
|
|
|
|
|
|
{{#*inline "body-employment" }}
|
|
|
|
<div>
|
|
|
|
<h3><em>{{ position }}</em>,
|
|
|
|
{{#if url }}
|
|
|
|
<a href="{{{ url }}}">{{ employer }}</a>
|
|
|
|
{{else}}
|
|
|
|
{{ employer }}
|
|
|
|
{{/if}}
|
|
|
|
</h3>
|
|
|
|
<span class="tenure">{{dateRange .}}</span>
|
|
|
|
{{#if keywords}}
|
|
|
|
{{#if start}}| {{/if}}<span class="keywords">{{#each keywords}}{{{ . }}} {{/each}}</span>
|
|
|
|
{{/if}}
|
|
|
|
<p>{{{ summary }}}</p>
|
|
|
|
{{> highlights }}
|
|
|
|
</div>
|
|
|
|
{{/inline}}
|
|
|
|
|
2016-01-12 15:33:19 +00:00
|
|
|
{{> section/employment _icon="icon-employment"}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
2016-01-13 02:29:30 +00:00
|
|
|
{{#*inline "body-projects" }}
|
|
|
|
<div>
|
|
|
|
<h3>{{#if role}}<em>{{camelCase role }}</em>,{{/if}}
|
|
|
|
{{#if url}}
|
|
|
|
<a href="{{{ url }}}">{{ title }}</a>
|
|
|
|
{{else}}
|
|
|
|
{{ title }}
|
|
|
|
{{/if}}
|
|
|
|
</h3>
|
|
|
|
{{#if start}}<span class="tenure">{{dateRange .}}</span>{{/if}}
|
|
|
|
{{#if keywords}}
|
|
|
|
{{#if start}}| {{/if}}<span class="keywords">{{#each keywords}}{{{ . }}} {{/each}}</span>
|
|
|
|
{{/if}}
|
|
|
|
{{{ summary }}}
|
|
|
|
{{> highlights }}
|
|
|
|
</div>
|
|
|
|
{{/inline}}
|
|
|
|
|
2016-01-11 04:30:35 +00:00
|
|
|
{{#*inline "icon-projects"}}<span class="fa fa-lg fa-star"></span>{{/inline}}
|
2016-01-13 02:29:30 +00:00
|
|
|
|
2016-01-12 15:33:19 +00:00
|
|
|
{{> section/projects _icon="icon-projects"}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
2016-01-11 04:30:35 +00:00
|
|
|
{{#*inline "icon-education"}}<span class="fa fa-lg fa-mortar-board"></span>{{/inline}}
|
2016-01-12 15:33:19 +00:00
|
|
|
{{> section/education _icon="icon-education"}}
|
2016-01-05 11:27:52 +00:00
|
|
|
|
2016-01-11 04:30:35 +00:00
|
|
|
{{#*inline "icon-service"}}<span class="fa fa-lg fa-child"></span>{{/inline}}
|
2016-01-12 15:33:19 +00:00
|
|
|
{{> section/service _icon="icon-service"}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
2016-01-11 04:30:35 +00:00
|
|
|
{{#*inline "icon-samples"}}<span class="fa fa-lg fa-share"></span>{{/inline}}
|
2016-01-12 15:33:19 +00:00
|
|
|
{{> section/samples _icon="icon-samples"}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
2016-01-11 04:30:35 +00:00
|
|
|
{{#*inline "icon-writing"}}<span class="fa fa-lg fa-pencil"></span>{{/inline}}
|
2016-01-12 15:33:19 +00:00
|
|
|
{{> section/writing _icon="icon-writing"}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
2016-01-11 04:30:35 +00:00
|
|
|
{{#*inline "icon-recognition"}}<span class="fa fa-lg fa-trophy"></span>{{/inline}}
|
2016-01-12 15:33:19 +00:00
|
|
|
{{> section/recognition _icon="icon-recognition"}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
2016-01-11 04:30:35 +00:00
|
|
|
{{#*inline "icon-speaking"}}<span class="fa fa-lg fa-users"></span>{{/inline}}
|
2016-01-12 15:33:19 +00:00
|
|
|
{{> section/speaking _icon="icon-speaking"}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
2016-01-12 12:27:41 +00:00
|
|
|
{{#*inline "icon-testimonials"}}<span class="fa fa-lg fa-thumbs-o-up"></span>{{/inline}}
|
2016-01-12 15:33:19 +00:00
|
|
|
{{> section/testimonials _icon="icon-testimonials"}}
|
2016-01-12 12:27:41 +00:00
|
|
|
|
|
|
|
{{#*inline "icon-references"}}<span class="fa fa-lg fa-thumbs-o-up"></span>{{/inline}}
|
2016-01-12 15:33:19 +00:00
|
|
|
{{> section/references _icon="icon-references"}}
|
2015-12-19 00:30:59 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|