1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2025-01-22 19:52:34 +00:00
fresh-themes/themes/positive/src/positive-pdf.html

79 lines
3.1 KiB
HTML
Raw Normal View History

2015-12-18 09:41:57 -05:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ r.name }}</title>
2016-01-23 20:18:40 -05:00
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
{{{styleSheet "positive-pdf.css"}}}
2015-12-18 09:41:57 -05:00
</head>
<body>
<main>
<header>
2016-01-04 17:07:30 -05:00
<h1>{{{initialWords r.name }}} <span style="color: #C00000;">{{{lastWord r.name }}}</span></h1>
2015-12-18 16:07:01 -05: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 09:41:57 -05:00
</header>
2016-01-12 09:49:28 -05:00
{{#has "info.brief"}}
2015-12-18 09:41:57 -05:00
<section id="summary">
2015-12-18 16:07:01 -05:00
{{{ r.info.brief }}}
2015-12-18 09:41:57 -05:00
</section>
2016-01-12 09:49:28 -05:00
{{/has}}
2015-12-18 09:41:57 -05:00
2016-01-12 09:49:28 -05:00
{{!<!--
Use predefined global partials for the other sections.
2015-12-18 09:41:57 -05:00
2016-01-12 09:49:28 -05: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-23 20:18:40 -05:00
{{#*inline "icon-skills"}}<span class="fa fa-lg fa-code"></span>{{/inline}}
2016-01-12 10:33:19 -05:00
{{> section/skills _icon="icon-skills"}}
2016-01-12 09:49:28 -05:00
{{#*inline "icon-employment"}}<span class="fa fa-lg fa-building"></span>{{/inline}}
2016-01-12 10:33:19 -05:00
{{> section/employment _icon="icon-employment" }}
2016-01-12 09:49:28 -05:00
{{#*inline "icon-projects"}}<span class="fa fa-lg fa-star"></span>{{/inline}}
2016-01-12 10:33:19 -05:00
{{> section/projects _icon="icon-projects"}}
2016-01-12 09:49:28 -05:00
{{#*inline "icon-education"}}<span class="fa fa-lg fa-mortar-board"></span>{{/inline}}
2016-01-12 10:33:19 -05:00
{{> section/education _icon="icon-education"}}
2016-01-12 09:49:28 -05:00
2016-01-23 20:18:40 -05:00
{{#*inline "icon-affiliation"}}<span class="fa fa-lg fa-share-alt"></span>{{/inline}}
{{> section/affiliation _icon="icon-affiliation"}}
2016-01-12 09:49:28 -05:00
{{#*inline "icon-service"}}<span class="fa fa-lg fa-child"></span>{{/inline}}
2016-01-12 10:33:19 -05:00
{{> section/service _icon="icon-service"}}
2016-01-12 09:49:28 -05:00
{{#*inline "icon-samples"}}<span class="fa fa-lg fa-share"></span>{{/inline}}
2016-01-12 10:33:19 -05:00
{{> section/samples _icon="icon-samples"}}
2016-01-12 09:49:28 -05:00
{{#*inline "icon-writing"}}<span class="fa fa-lg fa-pencil"></span>{{/inline}}
2016-01-12 10:33:19 -05:00
{{> section/writing _icon="icon-writing"}}
2016-01-12 09:49:28 -05:00
2016-01-20 06:23:35 -05:00
{{#*inline "icon-reading"}}<span class="fa fa-lg fa-book"></span>{{/inline}}
{{> section/reading _icon="icon-reading"}}
2016-01-12 09:49:28 -05:00
{{#*inline "icon-recognition"}}<span class="fa fa-lg fa-trophy"></span>{{/inline}}
2016-01-12 10:33:19 -05:00
{{> section/recognition _icon="icon-recognition"}}
2016-01-12 09:49:28 -05:00
{{#*inline "icon-speaking"}}<span class="fa fa-lg fa-users"></span>{{/inline}}
2016-01-12 10:33:19 -05:00
{{> section/speaking _icon="icon-speaking"}}
2016-01-12 09:49:28 -05:00
2016-01-23 20:18:40 -05:00
{{#*inline "icon-testimonials"}}<span class="fa fa-lg fa-quote-left"></span>{{/inline}}
2016-01-12 10:33:19 -05:00
{{> section/testimonials _icon="icon-testimonials"}}
2016-01-12 09:49:28 -05:00
{{#*inline "icon-references"}}<span class="fa fa-lg fa-thumbs-o-up"></span>{{/inline}}
2016-01-12 10:33:19 -05:00
{{> section/references _icon="icon-references"}}
2015-12-18 09:41:57 -05:00
2016-01-23 20:18:40 -05:00
</div>
</main>
2015-12-18 09:41:57 -05:00
</html>