1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2024-09-13 13:55:55 +01:00
fresh-themes/themes/minimist/templates/html.html

100 lines
3.0 KiB
HTML
Raw Normal View History

2015-10-06 19:20:47 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ r.name }}</title>
2015-10-06 19:20:47 +01:00
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic' rel='stylesheet' type='text/css'>
<link href="resume.css" rel="stylesheet" type="text/css">
</head>
<body>
<main>
<header>
<h1>{{ r.name }}</h1>
2015-10-06 19:20:47 +01:00
<div id="contact">
{% if (r.contact.email) { %}<div class="email">{{ r.contact.email }}</div>{% } %}
{% if (r.contact.phone) { %}<div class="phone">{{ r.contact.phone }}</div>{% } %}
{% if (r.contact.website) { %}<div class="website"><a href="{{ r.contact.website }}">{{ r.contact.website }}</a></div>{% } %}
2015-10-06 19:20:47 +01:00
</div>
</header>
2015-11-19 06:44:03 +00:00
{% if ( r.info.summary && r.info.summary.length ) { %}
2015-10-06 19:20:47 +01:00
<section id="summary">
2015-11-19 06:44:03 +00:00
{{ r.info.summary|md }}
2015-10-06 19:20:47 +01:00
</section>
{% } %}
{% if ( r.skills && r.skills.length ) { %}
<section id="skills">
<header>
<h2>Skills</h2><hr>
</header>
<table>
<thead>
<tr>
<th>Skill</th>
<th>Keywords</th>
</tr>
</thead>
<tbody>
{% r.skills.forEach( function( skill, idx, ar) { %}
<tr>
<td style="width: 25%;">{{ skill.name }}</td>
<td class="keywords">{{ skill.level }}</td>
2015-10-06 19:20:47 +01:00
</tr>
{% }); %}
</tbody>
</table>
</section>
{% } %}
{% if ( r.employment && r.employment.history && r.employment.history.length ) { %}
2015-10-06 19:20:47 +01:00
<section id="employment">
<header>
<h2>Employment</h2><hr>
</header>
{% r.employment.history.forEach( function( proj, idx, ar) { %}
<h3>{{ proj.employer }} <span class="tenure">{{ proj.safe.start.format('YYYY-MM') }}&mdash;{{ proj.safe.end.format('YYYY-MM') }}<span></h3>
{% if( proj.summary && proj.summary.length ) { %}<p style="clear: both;">{{ proj.summary|md }}</p>{% } %}
2015-10-06 19:20:47 +01:00
{% if( proj.highlights ) { %}
<ul>
{% proj.highlights.forEach( function( high, idx, ar) { %}
<li>{{ high|md }}</li>
{% }); %}
</ul>
{% } %}
{% }); %}
</section>
{% } %}
{% if ( r.education && r.education.history && r.education.history.length ) { %}
2015-10-06 19:20:47 +01:00
<section id="education">
<header>
<h2>Education</h2><hr>
</header>
{% r.education.history.forEach( function( edu, idx, ar) { %}
<h3>{{ edu.institution }} <span class="tenure">{{ edu.safe.start.format('YYYY-MM') }}&mdash;{{ edu.safe.end.format('YYYY-MM') }}<span></h3>
{% if( edu.summary && edu.summary.length ) { %}<p style="clear: both;">{{ edu.summary|md }}</p>{% } %}
{% if( edu.curriculum ) { %}
2015-10-06 19:20:47 +01:00
<ul>
{% edu.curriculum.forEach( function( course, idx, ar) { %}
2015-10-06 19:20:47 +01:00
<li>{{ course|md }}</li>
{% }); %}
</ul>
{% } %}
{% }); %}
</section>
{% } %}
</main>
</body>
</html>