2016-01-05 12:56:40 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>{{ RAW.name }}</title>
|
|
|
|
{{{styleSheet "html.css"}}}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main>
|
|
|
|
<header>
|
|
|
|
<h1>{{{ r.name }}}</h1>
|
|
|
|
<div id="contact">
|
|
|
|
{{#has 'contact.email'}}<div class="email"><a href="mailto:{{{ RAW.contact.email }}}">{{ RAW.contact.email }}</a></div>{{/has}}
|
|
|
|
{{#has 'contact.phone'}}<div class="phone">{{ RAW.contact.phone }}</div>{{/has}}
|
|
|
|
{{#has 'contact.website'}}<div class="website"><a href="{{{ RAW.contact.website }}}">{{trimURL RAW.contact.website }}</a></div>{{/has}}
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
2016-01-06 08:51:13 +00:00
|
|
|
|
|
|
|
|
2016-01-05 12:56:40 +00:00
|
|
|
{{#has "info.brief"}}
|
|
|
|
<section id="summary">
|
|
|
|
{{{ r.info.brief }}}
|
|
|
|
</section>
|
|
|
|
{{/has}}
|
|
|
|
|
|
|
|
|
2016-01-06 08:51:13 +00:00
|
|
|
|
2016-01-11 16:52:52 +00:00
|
|
|
{{!<!--
|
|
|
|
Use predefined global partials for the other sections.
|
2016-01-05 12:56:40 +00:00
|
|
|
|
2016-01-11 16:52:52 +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.
|
|
|
|
-->}}
|
2016-01-06 08:51:13 +00:00
|
|
|
|
2016-01-11 16:52:52 +00:00
|
|
|
{{> section/skills }}
|
2016-01-06 08:51:13 +00:00
|
|
|
|
2016-01-11 16:52:52 +00:00
|
|
|
{{> section/employment }}
|
2016-01-05 12:56:40 +00:00
|
|
|
|
2016-01-11 16:52:52 +00:00
|
|
|
{{> section/projects }}
|
2016-01-06 08:51:13 +00:00
|
|
|
|
2016-01-11 16:52:52 +00:00
|
|
|
{{> section/education }}
|
2016-01-06 08:51:13 +00:00
|
|
|
|
2016-01-11 16:52:52 +00:00
|
|
|
{{> section/service }}
|
2016-01-05 12:56:40 +00:00
|
|
|
|
2016-01-11 16:52:52 +00:00
|
|
|
{{> section/samples }}
|
2016-01-06 08:51:13 +00:00
|
|
|
|
2016-01-11 16:52:52 +00:00
|
|
|
{{> section/writing }}
|
2016-01-06 08:51:13 +00:00
|
|
|
|
2016-01-20 11:23:35 +00:00
|
|
|
{{> section/reading }}
|
|
|
|
|
2016-01-11 16:52:52 +00:00
|
|
|
{{> section/recognition }}
|
|
|
|
|
|
|
|
{{> section/speaking }}
|
2016-01-05 12:56:40 +00:00
|
|
|
|
2016-01-06 08:51:13 +00:00
|
|
|
|
|
|
|
|
2016-01-05 12:56:40 +00:00
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|