2015-12-18 14:41:57 +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'>
|
|
|
|
<style>
|
2015-12-18 21:07:01 +00:00
|
|
|
{{{ cssInfo.data }}}
|
2015-12-18 14:41:57 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main>
|
|
|
|
<header>
|
2016-01-04 22:07:30 +00:00
|
|
|
<h1>{{{initialWords r.name }}} <span style="color: #C00000;">{{{lastWord r.name }}}</span></h1>
|
2015-12-18 21:07:01 +00:00
|
|
|
<span class="label">{{{ r.info.label }}}</span>
|
|
|
|
<p id="contact">
|
|
|
|
{{#if r.contact.email}}<span class="email"><a href="mailto:{{ RAW.contact.email }}">{{{ r.contact.email }}}</a></span>{{/if}}
|
|
|
|
{{#if r.contact.phone}}<span class="phone">{{{ r.contact.phone }}}</span>{{/if}}
|
|
|
|
{{#if r.contact.website}}<span class="website"><a href="{{ RAW.contact.website }}">{{{ r.contact.website }}}</a></span>{{/if}}
|
|
|
|
</p>
|
2015-12-18 14:41:57 +00:00
|
|
|
</header>
|
|
|
|
|
|
|
|
|
2016-01-12 14:49:28 +00:00
|
|
|
{{#has "info.brief"}}
|
2015-12-18 14:41:57 +00:00
|
|
|
<section id="summary">
|
2015-12-18 21:07:01 +00:00
|
|
|
{{{ r.info.brief }}}
|
2015-12-18 14:41:57 +00:00
|
|
|
</section>
|
2016-01-12 14:49:28 +00:00
|
|
|
{{/has}}
|
2015-12-18 14:41:57 +00:00
|
|
|
|
|
|
|
|
2016-01-12 14:49:28 +00:00
|
|
|
{{!<!--
|
|
|
|
Use predefined global partials for the other sections.
|
2015-12-18 14:41:57 +00:00
|
|
|
|
2016-01-12 14:49:28 +00:00
|
|
|
The "inline" bit before each section allows us to pass a custom heading
|
|
|
|
icon into the global partial. For this theme, we're using Font Awesome.
|
|
|
|
-->}}
|
|
|
|
|
|
|
|
{{#*inline "icon-skills"}}<span class="fa fa-lg fa-star"></span>{{/inline}}
|
|
|
|
{{> section/skills }}
|
|
|
|
|
|
|
|
{{#*inline "icon-employment"}}<span class="fa fa-lg fa-building"></span>{{/inline}}
|
|
|
|
{{> section/employment }}
|
|
|
|
|
|
|
|
{{#*inline "icon-projects"}}<span class="fa fa-lg fa-star"></span>{{/inline}}
|
|
|
|
{{> section/projects }}
|
|
|
|
|
|
|
|
{{#*inline "icon-education"}}<span class="fa fa-lg fa-mortar-board"></span>{{/inline}}
|
|
|
|
{{> section/education }}
|
|
|
|
|
|
|
|
{{#*inline "icon-service"}}<span class="fa fa-lg fa-child"></span>{{/inline}}
|
|
|
|
{{> section/service }}
|
|
|
|
|
|
|
|
{{#*inline "icon-samples"}}<span class="fa fa-lg fa-share"></span>{{/inline}}
|
|
|
|
{{> section/samples }}
|
|
|
|
|
|
|
|
{{#*inline "icon-writing"}}<span class="fa fa-lg fa-pencil"></span>{{/inline}}
|
|
|
|
{{> section/writing }}
|
|
|
|
|
|
|
|
{{#*inline "icon-recognition"}}<span class="fa fa-lg fa-trophy"></span>{{/inline}}
|
|
|
|
{{> section/recognition }}
|
|
|
|
|
|
|
|
{{#*inline "icon-speaking"}}<span class="fa fa-lg fa-users"></span>{{/inline}}
|
|
|
|
{{> section/speaking }}
|
|
|
|
|
|
|
|
{{#*inline "icon-testimonials"}}<span class="fa fa-lg fa-thumbs-o-up"></span>{{/inline}}
|
|
|
|
{{> section/testimonials }}
|
|
|
|
|
|
|
|
{{#*inline "icon-references"}}<span class="fa fa-lg fa-thumbs-o-up"></span>{{/inline}}
|
|
|
|
{{> section/references }}
|
2015-12-18 14:41:57 +00:00
|
|
|
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|