mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-22 16:20:11 +00:00
Modern: Refactor and Handlebars-ify.
This commit is contained in:
parent
d0971cfa4e
commit
7be1073b3c
@ -2,5 +2,5 @@
|
|||||||
"title": "modern",
|
"title": "modern",
|
||||||
"description": "A contemporary resume template suitable for modern technical candidates and employees.",
|
"description": "A contemporary resume template suitable for modern technical candidates and employees.",
|
||||||
"author": "hacksalot <hacksalot@fluentdesk.com>",
|
"author": "hacksalot <hacksalot@fluentdesk.com>",
|
||||||
"engine": "underscore"
|
"engine": "handlebars"
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,191 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<title>{{ r.name }}</title>
|
|
||||||
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
|
|
||||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
|
||||||
{{ headFragment }}
|
|
||||||
{% if( cssInfo.file ) { %}
|
|
||||||
<link href="{{ cssInfo.file }}" rel="stylesheet" type="text/css">
|
|
||||||
{% } else { %}
|
|
||||||
<style>
|
|
||||||
{{ cssInfo.data }}
|
|
||||||
</style>
|
|
||||||
{% } %}
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<main id="main">
|
|
||||||
<div id="container">
|
|
||||||
<header>
|
|
||||||
<h1>{{ r.name }}</h1>
|
|
||||||
<div id="contact">
|
|
||||||
{% if (r.contact.email) { %}<div class="email">{{ RAW.contact.email }}</div>{% } %}
|
|
||||||
{% if (r.contact.phone) { %}<div class="phone">{{ RAW.contact.phone }}</div>{% } %}
|
|
||||||
{% if (r.contact.website) { %}<div class="website"><a href="{{ RAW.contact.website }}">{{ RAW.contact.website }}</a></div>{% } %}
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
{% if ( r.info.brief && r.info.brief.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="summary">
|
|
||||||
<h3>About</h3>
|
|
||||||
<span class="fa fa-lg fa-user"></span>
|
|
||||||
{{ r.info.brief }}
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.sets ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="skills">
|
|
||||||
<header>
|
|
||||||
<h3>Skills</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-code"></span>
|
|
||||||
|
|
||||||
<ul class="list-unstyled">
|
|
||||||
{% r.skills.sets.forEach( function(set) { %}
|
|
||||||
<li class="card card-nested card-skills">
|
|
||||||
<div class="skill-level" rel="tooltip" title="{{ set.level }}" data-placement="left">
|
|
||||||
<div class="skill-progress {{ set.level.toLowerCase() }}"></div>
|
|
||||||
</div>
|
|
||||||
<div class="skill-info">
|
|
||||||
<strong>{{ set.name }}</strong>
|
|
||||||
<div class="space-top labels">
|
|
||||||
{% if( set.skills && set.skills.length ) { %}
|
|
||||||
{% set.skills.forEach(function(kw) { %}
|
|
||||||
<span class="label label-keyword">{{ kw }}</span>
|
|
||||||
{% }); %}
|
|
||||||
{% } %}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
{% }); %}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.employment.history && r.employment.history.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="employment">
|
|
||||||
<header>
|
|
||||||
<h3>Employment</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-building"></span>
|
|
||||||
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
|
||||||
{% if( proj.url && proj.url.length ) { %}
|
|
||||||
<h4><span class="res-label">{{ proj.position }}</span>, <a href="{{ proj.url }}">{{ proj.employer }}</a></h4>
|
|
||||||
{% } else { %}
|
|
||||||
<h4><span class="res-label">{{ proj.position }}</span>, <span class="defunct">{{ proj.employer }}</span></h4>
|
|
||||||
{% } %}
|
|
||||||
<span class="tenure">{{ proj.safe.start.format('YYYY-MM') }}—{{ proj.safe.end.format('YYYY-MM') }}</span>
|
|
||||||
{{ proj.summary }}
|
|
||||||
{% if( proj.highlights ) { %}
|
|
||||||
<ul>
|
|
||||||
{% proj.highlights.forEach( function( high, idx, ar) { %}
|
|
||||||
<li>{{ high }}</li>
|
|
||||||
{% }); %}
|
|
||||||
</ul>
|
|
||||||
{% } %}
|
|
||||||
{% }); %}
|
|
||||||
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.education.history && r.education.history.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="education">
|
|
||||||
<header>
|
|
||||||
<h3>Education</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-mortar-board"></span>
|
|
||||||
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
|
||||||
<h4>{{ edu.institution }}</h4>
|
|
||||||
<span class="tenure">{{ edu.safe.start.format('YYYY-MM') }}—{{ edu.safe.end.format('YYYY-MM') }}</span>
|
|
||||||
{% if( edu.courses ) { %}
|
|
||||||
<ul>
|
|
||||||
{% edu.courses.forEach( function( course, idx, ar) { %}
|
|
||||||
<li>{{ course }}</li>
|
|
||||||
{% }); %}
|
|
||||||
</ul>
|
|
||||||
{% } %}
|
|
||||||
{% }); %}
|
|
||||||
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
{% if( r.recognition && r.recognition.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="awards">
|
|
||||||
<header>
|
|
||||||
<h3>Awards</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-trophy"></span>
|
|
||||||
{% r.recognition.forEach( function( award, idx, ar) { %}
|
|
||||||
<h4><span class="res-label">{{ award.title }}</span>, {{ award.from }}</h4>
|
|
||||||
<span class="tenure">{{ award.date }}</span>
|
|
||||||
{{ award.summary }}
|
|
||||||
{% }); %}
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
{% if( r.writing && r.writing.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="publications">
|
|
||||||
<header>
|
|
||||||
<h3>Publications</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-pencil"></span>
|
|
||||||
{% r.writing.forEach( function( pub, idx, ar) { %}
|
|
||||||
<h4>
|
|
||||||
<span class="res-label">{{ filt.link(pub.title, pub.url) }}</span> {{ pub.publisher }}
|
|
||||||
</h4>
|
|
||||||
<span class="tenure">Published on: {{ pub.safe.date.format('YYYY-MM') }}</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% }); %}
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
{% if ( r.service.history && r.service.history.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="volunteer">
|
|
||||||
<header>
|
|
||||||
<h3>Volunteer Work</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-child"></span>
|
|
||||||
{% r.service.history.forEach( function( vol, idx, ar) { %}
|
|
||||||
{% if( vol.url && vol.url.length ) { %}
|
|
||||||
<h4><span class="res-label">{{ vol.position }}</span>, <a href="{{ vol.website }}">{{ vol.organization }}</a></h4>
|
|
||||||
{% } else { %}
|
|
||||||
<h4><span class="res-label">{{ vol.position }}</span>, <span class="defunct">{{ vol.organization }}</span></h4>
|
|
||||||
{% } %}
|
|
||||||
<span class="tenure">{{ vol.safe.start.format('YYYY-MM') }}—{{ vol.safe.end.format('YYYY-MM') }}</span>
|
|
||||||
{{ vol.summary }}
|
|
||||||
{% if( vol.highlights ) { %}
|
|
||||||
<ul>
|
|
||||||
{% vol.highlights.forEach( function( high, idx, ar) { %}
|
|
||||||
<li>{{ high }}</li>
|
|
||||||
{% }); %}
|
|
||||||
</ul>
|
|
||||||
{% } %}
|
|
||||||
{% }); %}
|
|
||||||
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,54 +0,0 @@
|
|||||||
# {{ r.name }}
|
|
||||||
|
|
||||||
{% if (r.contact.email) { %}Email: {{ r.contact.email }}{% } %}
|
|
||||||
{% if (r.contact.phone) { %}Tel: {{ r.contact.phone }}{% } %}
|
|
||||||
{% if (r.contact.website) { %}Web: {{ r.contact.website }}{% } %}
|
|
||||||
|
|
||||||
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.sets ) { %}
|
|
||||||
## Skills
|
|
||||||
{% r.skills.sets.forEach( function( set, idx, ar) { %}
|
|
||||||
- **{{ set.name }}**: {{ set.skills.join(', ') }}
|
|
||||||
{% }); } %}
|
|
||||||
|
|
||||||
{% if ( r.employment.history && r.employment.history.length ) { %}
|
|
||||||
## Employment
|
|
||||||
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
|
||||||
### *{{ proj.position }}*, {{ proj.employer }}
|
|
||||||
<small>{{ proj.safe.start.format('MMM YYYY') }} — {{ proj.safe.end.format('MMM YYYY') }}</small>
|
|
||||||
{{ proj.summary }}
|
|
||||||
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high, idx, ar) { %}
|
|
||||||
- {{ high }}
|
|
||||||
{% }); } }); } %}
|
|
||||||
|
|
||||||
{% if ( r.education.history && r.education.history.length ) { %}
|
|
||||||
## Education
|
|
||||||
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
|
||||||
### {{ edu.institution }} ({{ edu.safe.start.format('MMM YYYY') }} — {{ edu.safe.end.format('MMM YYYY') }})
|
|
||||||
{{ edu.area }}
|
|
||||||
{% if( edu.curriculum ) { %}{% edu.curriculum.forEach( function( course, idx, ar) { %}
|
|
||||||
- {{ course }}
|
|
||||||
{% }); } }); } %}
|
|
||||||
|
|
||||||
{% if ( r.writing && r.writing.length ) { %}
|
|
||||||
## Publications
|
|
||||||
{% r.writing.forEach( function( pub, idx, ar) { %}
|
|
||||||
### {{ pub.title }} ({{ pub.safe.date.format('MMM YYYY') }})
|
|
||||||
{{ pub.publisher }}
|
|
||||||
{{ pub.summary }}
|
|
||||||
{% }); } %}
|
|
||||||
|
|
||||||
{% if ( r.service.history && r.service.history.length ) { %}
|
|
||||||
## Volunteer
|
|
||||||
{% r.service.history.forEach( function( vol, idx, ar) { %}
|
|
||||||
### {{ vol.organization }} ({{ vol.safe.start.format('MMM YYYY') }} — {{ vol.safe.end.format('MMM YYYY') }})
|
|
||||||
{{ vol.summary }}
|
|
||||||
{% }); } %}
|
|
||||||
|
|
||||||
{% if ( r.recognition && r.recognition.length ) { %}
|
|
||||||
## Recognition
|
|
||||||
{% r.recognition.forEach( function( awd, idx, ar) { %}
|
|
||||||
### *{{ awd.title }}*, {{ awd.from }} ({{ awd.safe.date.format('MMM YYYY') }})
|
|
||||||
{{ awd.summary }}
|
|
||||||
{% }); } %}
|
|
543
themes/modern/src/modern-doc.xml
Normal file
543
themes/modern/src/modern-doc.xml
Normal file
@ -0,0 +1,543 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<?mso-application progid="Word.Document"?>
|
||||||
|
<w:wordDocument xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.microsoft.com/office/word/2003/wordml" xmlns:wx="http://schemas.microsoft.com/office/word/2003/auxHint" xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml" xmlns:wsp="http://schemas.microsoft.com/office/word/2003/wordml/sp2" xmlns:sl="http://schemas.microsoft.com/schemaLibrary/2003/core" w:macrosPresent="no" w:embeddedObjPresent="no" w:ocxPresent="no" xml:space="preserve">
|
||||||
|
<w:ignoreSubtree w:val="http://schemas.microsoft.com/office/word/2003/wordml/sp2"/>
|
||||||
|
<o:DocumentProperties>
|
||||||
|
<o:Title>Resume for {{ r.name }}</o:Title>
|
||||||
|
<o:Author>{{ r.name }}</o:Author>
|
||||||
|
<o:Keywords>resume;CV</o:Keywords>
|
||||||
|
<o:LastAuthor>{{ r.name }}</o:LastAuthor>
|
||||||
|
<o:Revision>1</o:Revision>
|
||||||
|
<o:TotalTime>60</o:TotalTime>
|
||||||
|
<o:Created>2015-12-16T17:38:00Z</o:Created>
|
||||||
|
<o:LastSaved>2015-12-16T18:32:00Z</o:LastSaved>
|
||||||
|
<o:Pages>1</o:Pages>
|
||||||
|
<o:Words>241</o:Words>
|
||||||
|
<o:Characters>1379</o:Characters>
|
||||||
|
<o:Lines>11</o:Lines>
|
||||||
|
<o:Paragraphs>3</o:Paragraphs>
|
||||||
|
<o:CharactersWithSpaces>1617</o:CharactersWithSpaces>
|
||||||
|
<o:Version>15</o:Version>
|
||||||
|
</o:DocumentProperties>
|
||||||
|
<w:fonts>
|
||||||
|
<w:defaultFonts w:ascii="Times New Roman" w:fareast="Times New Roman" w:h-ansi="Times New Roman" w:cs="Times New Roman"/>
|
||||||
|
<w:font w:name="Times New Roman">
|
||||||
|
<w:panose-1 w:val="02020603050405020304"/>
|
||||||
|
<w:charset w:val="00"/>
|
||||||
|
<w:family w:val="Roman"/>
|
||||||
|
<w:pitch w:val="variable"/>
|
||||||
|
<w:sig w:usb-0="E0002AFF" w:usb-1="C0007841" w:usb-2="00000009" w:usb-3="00000000" w:csb-0="000001FF" w:csb-1="00000000"/>
|
||||||
|
</w:font>
|
||||||
|
<w:font w:name="Calibri">
|
||||||
|
<w:panose-1 w:val="020F0502020204030204"/>
|
||||||
|
<w:charset w:val="00"/>
|
||||||
|
<w:family w:val="Swiss"/>
|
||||||
|
<w:pitch w:val="variable"/>
|
||||||
|
<w:sig w:usb-0="A00002EF" w:usb-1="4000207B" w:usb-2="00000000" w:usb-3="00000000" w:csb-0="0000009F" w:csb-1="00000000"/>
|
||||||
|
</w:font>
|
||||||
|
</w:fonts>
|
||||||
|
<w:lists>
|
||||||
|
<w:listDef w:listDefId="1">
|
||||||
|
<w:lsid w:val="602C53DD"/>
|
||||||
|
<w:plt w:val="HybridMultilevel"/>
|
||||||
|
<w:tmpl w:val="61849B8C"/>
|
||||||
|
<w:lvl w:ilvl="0" w:tplc="DD7ED086">
|
||||||
|
<w:start w:val="1"/>
|
||||||
|
<w:nfc w:val="23"/>
|
||||||
|
<w:lvlText w:val="•"/>
|
||||||
|
<w:lvlJc w:val="left"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:ind w:left="720" w:hanging="360"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Calibri" w:h-ansi="Calibri" w:hint="default"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:lvl>
|
||||||
|
<w:lvl w:ilvl="1" w:tplc="04090003" w:tentative="on">
|
||||||
|
<w:start w:val="1"/>
|
||||||
|
<w:nfc w:val="23"/>
|
||||||
|
<w:lvlText w:val="o"/>
|
||||||
|
<w:lvlJc w:val="left"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:ind w:left="1440" w:hanging="360"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Courier New" w:h-ansi="Courier New" w:cs="Courier New" w:hint="default"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:lvl>
|
||||||
|
<w:lvl w:ilvl="2" w:tplc="04090005" w:tentative="on">
|
||||||
|
<w:start w:val="1"/>
|
||||||
|
<w:nfc w:val="23"/>
|
||||||
|
<w:lvlText w:val=""/>
|
||||||
|
<w:lvlJc w:val="left"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:ind w:left="2160" w:hanging="360"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Marlett" w:h-ansi="Marlett" w:hint="default"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:lvl>
|
||||||
|
<w:lvl w:ilvl="3" w:tplc="04090001" w:tentative="on">
|
||||||
|
<w:start w:val="1"/>
|
||||||
|
<w:nfc w:val="23"/>
|
||||||
|
<w:lvlText w:val=""/>
|
||||||
|
<w:lvlJc w:val="left"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:ind w:left="2880" w:hanging="360"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Symbol" w:h-ansi="Symbol" w:hint="default"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:lvl>
|
||||||
|
<w:lvl w:ilvl="4" w:tplc="04090003" w:tentative="on">
|
||||||
|
<w:start w:val="1"/>
|
||||||
|
<w:nfc w:val="23"/>
|
||||||
|
<w:lvlText w:val="o"/>
|
||||||
|
<w:lvlJc w:val="left"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:ind w:left="3600" w:hanging="360"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Courier New" w:h-ansi="Courier New" w:cs="Courier New" w:hint="default"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:lvl>
|
||||||
|
<w:lvl w:ilvl="5" w:tplc="04090005" w:tentative="on">
|
||||||
|
<w:start w:val="1"/>
|
||||||
|
<w:nfc w:val="23"/>
|
||||||
|
<w:lvlText w:val=""/>
|
||||||
|
<w:lvlJc w:val="left"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:ind w:left="4320" w:hanging="360"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Marlett" w:h-ansi="Marlett" w:hint="default"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:lvl>
|
||||||
|
<w:lvl w:ilvl="6" w:tplc="04090001" w:tentative="on">
|
||||||
|
<w:start w:val="1"/>
|
||||||
|
<w:nfc w:val="23"/>
|
||||||
|
<w:lvlText w:val=""/>
|
||||||
|
<w:lvlJc w:val="left"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:ind w:left="5040" w:hanging="360"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Symbol" w:h-ansi="Symbol" w:hint="default"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:lvl>
|
||||||
|
<w:lvl w:ilvl="7" w:tplc="04090003" w:tentative="on">
|
||||||
|
<w:start w:val="1"/>
|
||||||
|
<w:nfc w:val="23"/>
|
||||||
|
<w:lvlText w:val="o"/>
|
||||||
|
<w:lvlJc w:val="left"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:ind w:left="5760" w:hanging="360"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Courier New" w:h-ansi="Courier New" w:cs="Courier New" w:hint="default"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:lvl>
|
||||||
|
<w:lvl w:ilvl="8" w:tplc="04090005" w:tentative="on">
|
||||||
|
<w:start w:val="1"/>
|
||||||
|
<w:nfc w:val="23"/>
|
||||||
|
<w:lvlText w:val=""/>
|
||||||
|
<w:lvlJc w:val="left"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:ind w:left="6480" w:hanging="360"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Marlett" w:h-ansi="Marlett" w:hint="default"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:lvl>
|
||||||
|
</w:listDef>
|
||||||
|
<w:list w:ilfo="1">
|
||||||
|
<w:ilst w:val="1"/>
|
||||||
|
</w:list>
|
||||||
|
</w:lists>
|
||||||
|
<w:styles>
|
||||||
|
<w:style w:type="paragraph" w:default="on" w:styleId="Normal">
|
||||||
|
<w:name w:val="Normal"/>
|
||||||
|
<w:rsid w:val="002743C8"/>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Calibri" w:h-ansi="Calibri"/>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
<w:sz-cs w:val="24"/>
|
||||||
|
<w:lang w:val="EN-US" w:fareast="EN-US" w:bidi="AR-SA"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:pPr>
|
||||||
|
<w:jc w:val="both"/>
|
||||||
|
</w:pPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="paragraph" w:styleId="Heading1">
|
||||||
|
<w:name w:val="heading 1"/>
|
||||||
|
<wx:uiName wx:val="Heading 1"/>
|
||||||
|
<w:basedOn w:val="Normal"/>
|
||||||
|
<w:link w:val="Heading1Char"/>
|
||||||
|
<w:rsid w:val="00505903"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:spacing w:before="100" w:before-autospacing="on"/>
|
||||||
|
<w:outlineLvl w:val="0"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
<w:b/>
|
||||||
|
<w:b-cs/>
|
||||||
|
<w:color w:val="AEAAAA"/>
|
||||||
|
<w:kern w:val="36"/>
|
||||||
|
<w:sz w:val="32"/>
|
||||||
|
<w:sz-cs w:val="48"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="paragraph" w:styleId="Heading2">
|
||||||
|
<w:name w:val="heading 2"/>
|
||||||
|
<wx:uiName wx:val="Heading 2"/>
|
||||||
|
<w:basedOn w:val="Normal"/>
|
||||||
|
<w:link w:val="Heading2Char"/>
|
||||||
|
<w:rsid w:val="00505903"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:spacing w:before="120"/>
|
||||||
|
<w:outlineLvl w:val="1"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
<w:b/>
|
||||||
|
<w:b-cs/>
|
||||||
|
<w:caps/>
|
||||||
|
<w:sz-cs w:val="36"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="paragraph" w:styleId="Heading3">
|
||||||
|
<w:name w:val="heading 3"/>
|
||||||
|
<wx:uiName wx:val="Heading 3"/>
|
||||||
|
<w:basedOn w:val="Normal"/>
|
||||||
|
<w:link w:val="Heading3Char"/>
|
||||||
|
<w:rsid w:val="001B7422"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:spacing w:before="240" w:after="100" w:after-autospacing="on"/>
|
||||||
|
<w:outlineLvl w:val="2"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
<w:b/>
|
||||||
|
<w:b-cs/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="character" w:default="on" w:styleId="DefaultParagraphFont">
|
||||||
|
<w:name w:val="Default Paragraph Font"/>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="table" w:default="on" w:styleId="TableNormal">
|
||||||
|
<w:name w:val="Normal Table"/>
|
||||||
|
<wx:uiName wx:val="Table Normal"/>
|
||||||
|
<w:rPr>
|
||||||
|
<wx:font wx:val="Times New Roman"/>
|
||||||
|
<w:lang w:val="EN-US" w:fareast="EN-US" w:bidi="AR-SA"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:tblPr>
|
||||||
|
<w:tblInd w:w="0" w:type="dxa"/>
|
||||||
|
<w:tblCellMar>
|
||||||
|
<w:top w:w="0" w:type="dxa"/>
|
||||||
|
<w:left w:w="108" w:type="dxa"/>
|
||||||
|
<w:bottom w:w="0" w:type="dxa"/>
|
||||||
|
<w:right w:w="108" w:type="dxa"/>
|
||||||
|
</w:tblCellMar>
|
||||||
|
</w:tblPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="list" w:default="on" w:styleId="NoList">
|
||||||
|
<w:name w:val="No List"/>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="character" w:styleId="Hyperlink">
|
||||||
|
<w:name w:val="Hyperlink"/>
|
||||||
|
<w:rsid w:val="001B7422"/>
|
||||||
|
<w:rPr>
|
||||||
|
<w:strike w:val="off"/>
|
||||||
|
<w:dstrike w:val="off"/>
|
||||||
|
<w:color w:val="0064BD"/>
|
||||||
|
<w:u w:val="none"/>
|
||||||
|
<w:effect w:val="none"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="character" w:styleId="FollowedHyperlink">
|
||||||
|
<w:name w:val="FollowedHyperlink"/>
|
||||||
|
<w:rsid w:val="001B7422"/>
|
||||||
|
<w:rPr>
|
||||||
|
<w:strike w:val="off"/>
|
||||||
|
<w:dstrike w:val="off"/>
|
||||||
|
<w:color w:val="7B0796"/>
|
||||||
|
<w:u w:val="none"/>
|
||||||
|
<w:effect w:val="none"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="character" w:styleId="Heading2Char">
|
||||||
|
<w:name w:val="Heading 2 Char"/>
|
||||||
|
<w:link w:val="Heading2"/>
|
||||||
|
<w:rsid w:val="00505903"/>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Calibri" w:h-ansi="Calibri"/>
|
||||||
|
<w:b/>
|
||||||
|
<w:b-cs/>
|
||||||
|
<w:caps/>
|
||||||
|
<w:sz-cs w:val="36"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="character" w:styleId="Heading3Char">
|
||||||
|
<w:name w:val="Heading 3 Char"/>
|
||||||
|
<w:link w:val="Heading3"/>
|
||||||
|
<w:rsid w:val="001B7422"/>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Calibri Light" w:fareast="Times New Roman" w:h-ansi="Calibri Light" w:cs="Times New Roman"/>
|
||||||
|
<w:color w:val="1F4D78"/>
|
||||||
|
<w:sz w:val="24"/>
|
||||||
|
<w:sz-cs w:val="24"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="paragraph" w:styleId="NormalWeb">
|
||||||
|
<w:name w:val="Normal (Web)"/>
|
||||||
|
<w:basedOn w:val="Normal"/>
|
||||||
|
<w:rsid w:val="001B7422"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:spacing w:before="100" w:before-autospacing="on" w:after="100" w:after-autospacing="on"/>
|
||||||
|
<w:jc w:val="both"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="character" w:styleId="Heading1Char">
|
||||||
|
<w:name w:val="Heading 1 Char"/>
|
||||||
|
<w:link w:val="Heading1"/>
|
||||||
|
<w:rsid w:val="00505903"/>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Calibri" w:h-ansi="Calibri"/>
|
||||||
|
<w:b/>
|
||||||
|
<w:b-cs/>
|
||||||
|
<w:color w:val="AEAAAA"/>
|
||||||
|
<w:kern w:val="36"/>
|
||||||
|
<w:sz w:val="32"/>
|
||||||
|
<w:sz-cs w:val="48"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="character" w:styleId="Strong">
|
||||||
|
<w:name w:val="Strong"/>
|
||||||
|
<w:rsid w:val="001B7422"/>
|
||||||
|
<w:rPr>
|
||||||
|
<w:b/>
|
||||||
|
<w:b-cs/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="character" w:styleId="Emphasis">
|
||||||
|
<w:name w:val="Emphasis"/>
|
||||||
|
<w:rsid w:val="001B7422"/>
|
||||||
|
<w:rPr>
|
||||||
|
<w:i/>
|
||||||
|
<w:i-cs/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="character" w:styleId="tenure">
|
||||||
|
<w:name w:val="tenure"/>
|
||||||
|
<w:basedOn w:val="DefaultParagraphFont"/>
|
||||||
|
<w:rsid w:val="001B7422"/>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="paragraph" w:styleId="Title">
|
||||||
|
<w:name w:val="Title"/>
|
||||||
|
<w:basedOn w:val="Normal"/>
|
||||||
|
<w:next w:val="Normal"/>
|
||||||
|
<w:link w:val="TitleChar"/>
|
||||||
|
<w:rsid w:val="002D3B7B"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:contextualSpacing/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Calibri Light" w:h-ansi="Calibri Light"/>
|
||||||
|
<wx:font wx:val="Calibri Light"/>
|
||||||
|
<w:caps/>
|
||||||
|
<w:spacing w:val="-10"/>
|
||||||
|
<w:kern w:val="28"/>
|
||||||
|
<w:sz w:val="48"/>
|
||||||
|
<w:sz-cs w:val="56"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="character" w:styleId="TitleChar">
|
||||||
|
<w:name w:val="Title Char"/>
|
||||||
|
<w:link w:val="Title"/>
|
||||||
|
<w:rsid w:val="002D3B7B"/>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Calibri Light" w:h-ansi="Calibri Light"/>
|
||||||
|
<w:caps/>
|
||||||
|
<w:spacing w:val="-10"/>
|
||||||
|
<w:kern w:val="28"/>
|
||||||
|
<w:sz w:val="48"/>
|
||||||
|
<w:sz-cs w:val="56"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="paragraph" w:styleId="ListParagraph">
|
||||||
|
<w:name w:val="List Paragraph"/>
|
||||||
|
<w:basedOn w:val="Normal"/>
|
||||||
|
<w:rsid w:val="00C146CA"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:ind w:left="720"/>
|
||||||
|
<w:contextualSpacing/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="paragraph" w:styleId="Summary">
|
||||||
|
<w:name w:val="Summary"/>
|
||||||
|
<w:basedOn w:val="Normal"/>
|
||||||
|
<w:link w:val="SummaryChar"/>
|
||||||
|
<w:rsid w:val="00A210E1"/>
|
||||||
|
<w:pPr>
|
||||||
|
<w:spacing w:before="120"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
<w:color w:val="767171"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
<w:style w:type="character" w:styleId="SummaryChar">
|
||||||
|
<w:name w:val="Summary Char"/>
|
||||||
|
<w:link w:val="Summary"/>
|
||||||
|
<w:rsid w:val="00A210E1"/>
|
||||||
|
<w:rPr>
|
||||||
|
<w:rFonts w:ascii="Calibri" w:h-ansi="Calibri"/>
|
||||||
|
<w:sz-cs w:val="24"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:style>
|
||||||
|
</w:styles>
|
||||||
|
<w:docPr>
|
||||||
|
<w:view w:val="print"/>
|
||||||
|
<w:zoom w:percent="98"/>
|
||||||
|
<w:doNotEmbedSystemFonts/>
|
||||||
|
<w:defaultTabStop w:val="720"/>
|
||||||
|
<w:characterSpacingControl w:val="DontCompress"/>
|
||||||
|
<w:webPageEncoding w:val="unicode"/>
|
||||||
|
<w:optimizeForBrowser/>
|
||||||
|
<w:allowPNG/>
|
||||||
|
<w:validateAgainstSchema/>
|
||||||
|
<w:saveInvalidXML w:val="off"/>
|
||||||
|
<w:ignoreMixedContent w:val="off"/>
|
||||||
|
<w:alwaysShowPlaceholderText w:val="off"/>
|
||||||
|
<w:compat>
|
||||||
|
<w:breakWrappedTables/>
|
||||||
|
</w:compat>
|
||||||
|
<wsp:rsids>
|
||||||
|
<wsp:rsidRoot wsp:val="00C146CA"/>
|
||||||
|
<wsp:rsid wsp:val="000A3AF0"/>
|
||||||
|
<wsp:rsid wsp:val="001B7422"/>
|
||||||
|
<wsp:rsid wsp:val="002743C8"/>
|
||||||
|
<wsp:rsid wsp:val="002865F0"/>
|
||||||
|
<wsp:rsid wsp:val="002D3B7B"/>
|
||||||
|
<wsp:rsid wsp:val="00397D4D"/>
|
||||||
|
<wsp:rsid wsp:val="00437135"/>
|
||||||
|
<wsp:rsid wsp:val="00505903"/>
|
||||||
|
<wsp:rsid wsp:val="00606071"/>
|
||||||
|
<wsp:rsid wsp:val="006C2CFB"/>
|
||||||
|
<wsp:rsid wsp:val="00771B3E"/>
|
||||||
|
<wsp:rsid wsp:val="007D096C"/>
|
||||||
|
<wsp:rsid wsp:val="009452CA"/>
|
||||||
|
<wsp:rsid wsp:val="00A210E1"/>
|
||||||
|
<wsp:rsid wsp:val="00B43FDC"/>
|
||||||
|
<wsp:rsid wsp:val="00C146CA"/>
|
||||||
|
<wsp:rsid wsp:val="00C77315"/>
|
||||||
|
<wsp:rsid wsp:val="00CD3781"/>
|
||||||
|
<wsp:rsid wsp:val="00E578D4"/>
|
||||||
|
<wsp:rsid wsp:val="00EA0B64"/>
|
||||||
|
<wsp:rsid wsp:val="00FE101B"/>
|
||||||
|
</wsp:rsids>
|
||||||
|
</w:docPr>
|
||||||
|
<w:body>
|
||||||
|
<wx:sect>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="007D096C" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Title"/>
|
||||||
|
<w:tabs>
|
||||||
|
<w:tab w:val="right" w:pos="9360"/>
|
||||||
|
</w:tabs>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:t>{{initialWords r.name }} </w:t>
|
||||||
|
</w:r>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:color w:val="C00000"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{lastWord r.name }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
<w:r>
|
||||||
|
<w:tab/>
|
||||||
|
</w:r>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:color w:val="DADADA"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ r.info.label }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRDefault="00505903" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:jc w:val="right"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:hlink w:dest="mailto:{{ r.contact.email }}">
|
||||||
|
<w:r wsp:rsidRPr="003876BF">
|
||||||
|
<w:rPr>
|
||||||
|
<w:rStyle w:val="Hyperlink"/>
|
||||||
|
<w:sz w:val="16"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ r.contact.email }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:hlink>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="16"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t> - </w:t>
|
||||||
|
</w:r>
|
||||||
|
<w:r wsp:rsidR="00C146CA" wsp:rsidRPr="000A3AF0">
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="16"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ r.contact.phone }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz w:val="16"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t> - </w:t>
|
||||||
|
</w:r>
|
||||||
|
<w:hlink w:dest="{{ r.contact.website }}">
|
||||||
|
<w:r wsp:rsidRPr="003876BF">
|
||||||
|
<w:rPr>
|
||||||
|
<w:rStyle w:val="Hyperlink"/>
|
||||||
|
<w:sz w:val="16"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ r.contact.website }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:hlink>
|
||||||
|
</w:p>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="000A3AF0" wsp:rsidRDefault="00C146CA" wsp:rsidP="00A210E1">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Summary"/>
|
||||||
|
</w:pPr>
|
||||||
|
{{{wpml r.info.brief true }}}
|
||||||
|
<!-- <w:r wsp:rsidRPr="000A3AF0">
|
||||||
|
<w:t>{{ r.info.brief }}</w:t>
|
||||||
|
</w:r> -->
|
||||||
|
</w:p>
|
||||||
|
{{> skills }}
|
||||||
|
{{> employment }}
|
||||||
|
{{> education }}
|
||||||
|
{{> service }}
|
||||||
|
{{> writing }}
|
||||||
|
{{> recognition }}
|
||||||
|
<w:sectPr wsp:rsidR="00B43FDC" wsp:rsidRPr="000A3AF0" wsp:rsidSect="001B7422">
|
||||||
|
<w:pgSz w:w="12240" w:h="15840"/>
|
||||||
|
<w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="720" w:footer="720" w:gutter="0"/>
|
||||||
|
<w:cols w:space="720"/>
|
||||||
|
<w:docGrid w:line-pitch="360"/>
|
||||||
|
</w:sectPr>
|
||||||
|
</wx:sect>
|
||||||
|
</w:body>
|
||||||
|
</w:wordDocument>
|
180
themes/modern/src/modern-html.html
Normal file
180
themes/modern/src/modern-html.html
Normal file
@ -0,0 +1,180 @@
|
|||||||
|
<!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">
|
||||||
|
<link href="modern-html.css" rel="stylesheet" type="text/css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main id="main">
|
||||||
|
<div id="container">
|
||||||
|
<header>
|
||||||
|
<h1>{{{ r.name }}}</h1>
|
||||||
|
<div id="contact">
|
||||||
|
{{#if r.contact.email}}<div class="email"><a href="mailto:{{{ RAW.contact.email }}}">{{ RAW.contact.email }}</a></div>{{/if}}
|
||||||
|
{{#if r.contact.phone}}<div class="phone">{{ RAW.contact.phone }}</div>{{/if}}
|
||||||
|
{{#if r.contact.website}}<div class="website"><a href="{{{ RAW.contact.website }}}">{{ RAW.contact.website }}</a></div>{{/if}}
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
{{#if r.info.brief}}
|
||||||
|
<hr>
|
||||||
|
<section id="summary">
|
||||||
|
<h3>About</h3>
|
||||||
|
<span class="fa fa-lg fa-user"></span>
|
||||||
|
{{{ r.info.brief }}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
|
{{#if r.skills }}
|
||||||
|
<hr>
|
||||||
|
<section id="skills">
|
||||||
|
<header>
|
||||||
|
<h3>Skills</h3>
|
||||||
|
</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>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{{#if r.employment}}
|
||||||
|
<hr>
|
||||||
|
<section id="employment">
|
||||||
|
<header>
|
||||||
|
<h3>Employment</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-building"></span>
|
||||||
|
{{#each r.employment.history}}
|
||||||
|
{{#if url}}
|
||||||
|
<h4><span class="res-label">{{ position }}</span>, <a href="{{ url }}">{{ employer }}</a></h4>
|
||||||
|
{{else}}
|
||||||
|
<h4><span class="res-label">{{ position }}</span>, <span class="defunct">{{ employer }}</span></h4>
|
||||||
|
{{/if}}
|
||||||
|
<span class="tenure">{{formatDate safe.start 'YYYY-MM' }}—{{formatDate safe.end 'YYYY-MM' }}</span>
|
||||||
|
{{{ summary }}}
|
||||||
|
{{#if proj.highlights}}
|
||||||
|
<ul>
|
||||||
|
{{#each highlights}}
|
||||||
|
<li>{{ this }}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{# if r.education}}
|
||||||
|
<hr>
|
||||||
|
<section id="education">
|
||||||
|
<header>
|
||||||
|
<h3>Education</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-mortar-board"></span>
|
||||||
|
{{#each r.education.history}}
|
||||||
|
<h4>{{ institution }}</h4>
|
||||||
|
<span class="tenure">{{formatDate safe.start 'YYYY-MM' }}—{{formatDate safe.end 'YYYY-MM' }}</span>
|
||||||
|
{{#if courses}}
|
||||||
|
<ul>
|
||||||
|
{{#each courses}}
|
||||||
|
<li>{{ this }}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if r.service}}
|
||||||
|
<hr>
|
||||||
|
<section id="volunteer">
|
||||||
|
<header>
|
||||||
|
<h3>Service</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-child"></span>
|
||||||
|
{{#each r.service.history}}
|
||||||
|
{{#if url}}
|
||||||
|
<h4><span class="res-label">{{ position }}</span>, <a href="{{{ website }}}">{{ organization }}</a></h4>
|
||||||
|
{{else}}
|
||||||
|
<h4><span class="res-label">{{ position }}</span>, <span class="defunct">{{ organization }}</span></h4>
|
||||||
|
{{/if}}
|
||||||
|
<span class="tenure">{{formatDate safe.start 'YYYY-MM'}}—{{formatDate safe.end 'YYYY-MM' }}</span>
|
||||||
|
{{{ summary }}}
|
||||||
|
{{#if highlights}}
|
||||||
|
<ul>
|
||||||
|
{{#each highlights}}
|
||||||
|
<li>{{ this }}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if r.writing}}
|
||||||
|
<hr>
|
||||||
|
<section id="publications">
|
||||||
|
<header>
|
||||||
|
<h3>Publications</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-pencil"></span>
|
||||||
|
{{#each r.writing}}
|
||||||
|
{{#if url}}
|
||||||
|
<h4><a href=""><span class="res-label">{{{ title }}}</span></a>, <span>{{{ publisher.name }}}</span></h4>
|
||||||
|
{{else}}
|
||||||
|
<h4><span class="res-label">{{{ title }}}</span>, <span class="defunct">{{{ publisher.name }}}</span></h4>
|
||||||
|
{{/if}}
|
||||||
|
<span class="tenure">Published on: {{formatDate safe.date 'YYYY-MM'}}</span>
|
||||||
|
{{/each}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{# if r.recognition}}
|
||||||
|
<hr>
|
||||||
|
<section id="awards">
|
||||||
|
<header>
|
||||||
|
<h3>Awards</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
|
{{#each r.recognition}}
|
||||||
|
<h4><span class="res-label">{{{ title }}}</span>, {{{ from }}}</h4>
|
||||||
|
<span class="tenure">{{{ date }}}</span>
|
||||||
|
{{{ summary }}}
|
||||||
|
{{/each}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
84
themes/modern/src/modern-md.txt
Normal file
84
themes/modern/src/modern-md.txt
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
{{ r.name }}
|
||||||
|
============
|
||||||
|
{{#if r.contact.email }}Email: {{{ r.contact.email }}}{{/if}}
|
||||||
|
{{#if r.contact.phone }}Tel: {{{ r.contact.phone }}}{{/if}}
|
||||||
|
{{#if r.contact.website }}Web: {{{ r.contact.website }}}{{/if}}
|
||||||
|
|
||||||
|
{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
|
||||||
|
|
||||||
|
{{#if r.skills}}
|
||||||
|
## SKILLS
|
||||||
|
|
||||||
|
{{#each r.skills.sets}}
|
||||||
|
- {{{ name }}}: {{#each this.skills}}{{{ this }}} {{/each}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if r.employment}}
|
||||||
|
## EMPLOYMENT
|
||||||
|
|
||||||
|
{{#each r.employment.history }}
|
||||||
|
{{#compare @index 4 operator="<"}}
|
||||||
|
### {{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
||||||
|
{{{ summary }}}
|
||||||
|
{{#if highlights}}
|
||||||
|
{{#each highlights}}
|
||||||
|
- {{{ this }}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{/compare}}
|
||||||
|
{{#compare @index 4 operator=">="}}
|
||||||
|
{{#compare @index 4 operator="=="}}
|
||||||
|
### Previously...
|
||||||
|
Prior to {{{ employer }}}, I worked on a range of projects for companies large and small.
|
||||||
|
{{/compare}}
|
||||||
|
- {{{ position }}}, {{{ employer }}}
|
||||||
|
{{/compare}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if r.education}}
|
||||||
|
## EDUCATION
|
||||||
|
|
||||||
|
{{#each r.education.history}}
|
||||||
|
### {{{ institution }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
||||||
|
{{#if summary }}
|
||||||
|
{{{ summary }}}
|
||||||
|
{{/if}}
|
||||||
|
{{#if courses}}
|
||||||
|
{{#each courses}}
|
||||||
|
- {{{ this }}}{{/each}}{{/if}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
{{#if r.writing}}
|
||||||
|
## WRITING
|
||||||
|
|
||||||
|
{{#each r.writing}}
|
||||||
|
### {{{ title }}} ({{formatDate safe.date 'YYYY-MM' }})
|
||||||
|
{{{ summary }}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if r.service }}
|
||||||
|
## SERVICE
|
||||||
|
|
||||||
|
{{#each r.service.history}}
|
||||||
|
### {{{ organization }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
||||||
|
{{{ summary }}}
|
||||||
|
{{#if highlights}}
|
||||||
|
{{#each highlights}}
|
||||||
|
- {{{ this }}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
{{#if r.recognition}}
|
||||||
|
## RECOGNITION
|
||||||
|
|
||||||
|
{{#each r.recognition}}
|
||||||
|
### {{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
|
||||||
|
{{{ summary }}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
185
themes/modern/src/modern-pdf.html
Normal file
185
themes/modern/src/modern-pdf.html
Normal file
@ -0,0 +1,185 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>{{ r.name }}</title>
|
||||||
|
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
|
||||||
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
||||||
|
{{ headFragment }}
|
||||||
|
<style>
|
||||||
|
{{{ cssInfo.data }}}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main id="main">
|
||||||
|
<div id="container">
|
||||||
|
<header>
|
||||||
|
<h1>{{{ r.name }}}</h1>
|
||||||
|
<div id="contact">
|
||||||
|
{{#if r.contact.email}}<div class="email"><a href="mailto:{{{ RAW.contact.email }}}">{{ RAW.contact.email }}</a></div>{{/if}}
|
||||||
|
{{#if r.contact.phone}}<div class="phone">{{ RAW.contact.phone }}</div>{{/if}}
|
||||||
|
{{#if r.contact.website}}<div class="website"><a href="{{{ RAW.contact.website }}}">{{ RAW.contact.website }}</a></div>{{/if}}
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
{{#if r.info.brief}}
|
||||||
|
<hr>
|
||||||
|
<section id="summary">
|
||||||
|
<h3>About</h3>
|
||||||
|
<span class="fa fa-lg fa-user"></span>
|
||||||
|
{{{ r.info.brief }}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
|
{{#if r.skills }}
|
||||||
|
<hr>
|
||||||
|
<section id="skills">
|
||||||
|
<header>
|
||||||
|
<h3>Skills</h3>
|
||||||
|
</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>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{{#if r.employment}}
|
||||||
|
<hr>
|
||||||
|
<section id="employment">
|
||||||
|
<header>
|
||||||
|
<h3>Employment</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-building"></span>
|
||||||
|
{{#each r.employment.history}}
|
||||||
|
{{#if url}}
|
||||||
|
<h4><span class="res-label">{{ position }}</span>, <a href="{{ url }}">{{ employer }}</a></h4>
|
||||||
|
{{else}}
|
||||||
|
<h4><span class="res-label">{{ position }}</span>, <span class="defunct">{{ employer }}</span></h4>
|
||||||
|
{{/if}}
|
||||||
|
<span class="tenure">{{formatDate safe.start 'YYYY-MM' }}—{{formatDate safe.end 'YYYY-MM' }}</span>
|
||||||
|
{{{ summary }}}
|
||||||
|
{{#if proj.highlights}}
|
||||||
|
<ul>
|
||||||
|
{{#each highlights}}
|
||||||
|
<li>{{ this }}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{# if r.education}}
|
||||||
|
<hr>
|
||||||
|
<section id="education">
|
||||||
|
<header>
|
||||||
|
<h3>Education</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-mortar-board"></span>
|
||||||
|
{{#each r.education.history}}
|
||||||
|
<h4>{{ institution }}</h4>
|
||||||
|
<span class="tenure">{{formatDate safe.start 'YYYY-MM' }}—{{formatDate safe.end 'YYYY-MM' }}</span>
|
||||||
|
{{#if courses}}
|
||||||
|
<ul>
|
||||||
|
{{#each courses}}
|
||||||
|
<li>{{ this }}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if r.service}}
|
||||||
|
<hr>
|
||||||
|
<section id="volunteer">
|
||||||
|
<header>
|
||||||
|
<h3>Service</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-child"></span>
|
||||||
|
{{#each r.service.history}}
|
||||||
|
{{#if url}}
|
||||||
|
<h4><span class="res-label">{{ position }}</span>, <a href="{{{ website }}}">{{ organization }}</a></h4>
|
||||||
|
{{else}}
|
||||||
|
<h4><span class="res-label">{{ position }}</span>, <span class="defunct">{{ organization }}</span></h4>
|
||||||
|
{{/if}}
|
||||||
|
<span class="tenure">{{formatDate safe.start 'YYYY-MM'}}—{{formatDate safe.end 'YYYY-MM' }}</span>
|
||||||
|
{{{ summary }}}
|
||||||
|
{{#if highlights}}
|
||||||
|
<ul>
|
||||||
|
{{#each highlights}}
|
||||||
|
<li>{{ this }}</li>
|
||||||
|
{{/each}}
|
||||||
|
</ul>
|
||||||
|
{{/if}}
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if r.writing}}
|
||||||
|
<hr>
|
||||||
|
<section id="publications">
|
||||||
|
<header>
|
||||||
|
<h3>Publications</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-pencil"></span>
|
||||||
|
{{#each r.writing}}
|
||||||
|
{{#if url}}
|
||||||
|
<h4><a href=""><span class="res-label">{{{ title }}}</span></a>, <span>{{{ publisher.name }}}</span></h4>
|
||||||
|
{{else}}
|
||||||
|
<h4><span class="res-label">{{{ title }}}</span>, <span class="defunct">{{{ publisher.name }}}</span></h4>
|
||||||
|
{{/if}}
|
||||||
|
<span class="tenure">Published on: {{formatDate safe.date 'YYYY-MM'}}</span>
|
||||||
|
{{/each}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{# if r.recognition}}
|
||||||
|
<hr>
|
||||||
|
<section id="awards">
|
||||||
|
<header>
|
||||||
|
<h3>Awards</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-trophy"></span>
|
||||||
|
{{#each r.recognition}}
|
||||||
|
<h4><span class="res-label">{{{ title }}}</span>, {{{ from }}}</h4>
|
||||||
|
<span class="tenure">{{{ date }}}</span>
|
||||||
|
{{{ summary }}}
|
||||||
|
{{/each}}
|
||||||
|
</section>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
84
themes/modern/src/modern-txt.txt
Normal file
84
themes/modern/src/modern-txt.txt
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
{{ r.name }}
|
||||||
|
{{#if r.contact.email }}Email: {{{ r.contact.email }}}{{/if}}
|
||||||
|
{{#if r.contact.phone }}Tel: {{{ r.contact.phone }}}{{/if}}
|
||||||
|
{{#if r.contact.website }}Web: {{{ r.contact.website }}}{{/if}}
|
||||||
|
================================================================================
|
||||||
|
|
||||||
|
{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
|
||||||
|
|
||||||
|
{{#if r.skills}}
|
||||||
|
SKILLS -------------------------------------------------------------------------
|
||||||
|
|
||||||
|
{{#each r.skills.sets}}
|
||||||
|
- {{{ name }}}: {{#each this.skills}}{{{ this }}} {{/each}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if r.employment}}
|
||||||
|
EMPLOYMENT ---------------------------------------------------------------------
|
||||||
|
|
||||||
|
{{#each r.employment.history }}
|
||||||
|
{{#compare @index 4 operator="<"}}
|
||||||
|
{{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
||||||
|
{{{ summary }}}
|
||||||
|
{{#if highlights}}
|
||||||
|
{{#each highlights}}
|
||||||
|
- {{{ this }}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{/compare}}
|
||||||
|
{{#compare @index 4 operator=">="}}
|
||||||
|
{{#compare @index 4 operator="=="}}
|
||||||
|
Previously...
|
||||||
|
Prior to {{{ employer }}}, I worked on a range of projects for companies large and small.
|
||||||
|
{{/compare}}
|
||||||
|
- {{{ position }}}, {{{ employer }}}
|
||||||
|
{{/compare}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if r.education}}
|
||||||
|
EDUCATION ----------------------------------------------------------------------
|
||||||
|
|
||||||
|
{{#each r.education.history}}
|
||||||
|
{{{ institution }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
||||||
|
{{#if summary }}
|
||||||
|
{{{ summary }}}
|
||||||
|
{{/if}}
|
||||||
|
{{#if courses}}
|
||||||
|
{{#each courses}}
|
||||||
|
- {{{ this }}}{{/each}}{{/if}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
{{#if r.writing}}
|
||||||
|
WRITING ------------------------------------------------------------------------
|
||||||
|
|
||||||
|
{{#each r.writing}}
|
||||||
|
{{{ title }}} ({{formatDate safe.date 'YYYY-MM' }})
|
||||||
|
{{{ summary }}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#if r.service }}
|
||||||
|
SERVICE ------------------------------------------------------------------------
|
||||||
|
|
||||||
|
{{#each r.service.history}}
|
||||||
|
{{{ organization }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
||||||
|
{{{ summary }}}
|
||||||
|
{{#if highlights}}
|
||||||
|
{{#each highlights}}
|
||||||
|
- {{{ this }}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
{{#if r.recognition}}
|
||||||
|
RECOGNITION --------------------------------------------------------------------
|
||||||
|
|
||||||
|
{{#each r.recognition}}
|
||||||
|
{{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
|
||||||
|
{{{ summary }}}
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
81
themes/modern/src/partials/education.xml
Normal file
81
themes/modern/src/partials/education.xml
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
<wx:sub-section>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Heading1"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>EDUCATION</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
|
||||||
|
{{#each r.education.history}}
|
||||||
|
|
||||||
|
<wx:sub-section>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00606071" wsp:rsidP="00E578D4">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Heading2"/>
|
||||||
|
<w:tabs>
|
||||||
|
<w:tab w:val="right" w:pos="9360"/>
|
||||||
|
</w:tabs>
|
||||||
|
</w:pPr>
|
||||||
|
{{#if url}}<w:hlink w:dest="{{{ url }}}">{{/if}}
|
||||||
|
<w:r wsp:rsidR="009452CA" wsp:rsidRPr="00606071">
|
||||||
|
{{#if url }}
|
||||||
|
<w:rPr>
|
||||||
|
<w:rStyle w:val="Hyperlink"/>
|
||||||
|
</w:rPr>
|
||||||
|
{{/if}}
|
||||||
|
<w:t>{{ institution }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
{{#if url}}</w:hlink>{{/if}}
|
||||||
|
<w:r wsp:rsidR="00EA0B64">
|
||||||
|
<w:tab/>
|
||||||
|
</w:r>
|
||||||
|
<w:r wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>{{formatDate safe.start 'YYYY' }} — {{formatDate safe.end 'YYYY'}}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
{{#either area studyType }}
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="000A3AF0" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r wsp:rsidRPr="000A3AF0">
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ area }}, {{ studyType }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
{{/either}}
|
||||||
|
|
||||||
|
{{#each highlights }}
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRDefault="009452CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="ListParagraph"/>
|
||||||
|
<w:listPr>
|
||||||
|
<w:ilvl w:val="0"/>
|
||||||
|
<w:ilfo w:val="1"/>
|
||||||
|
<wx:t wx:val="•"/>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
</w:listPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ this }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</wx:sub-section>
|
||||||
|
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</wx:sub-section>
|
84
themes/modern/src/partials/employment.xml
Normal file
84
themes/modern/src/partials/employment.xml
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
<wx:sub-section>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Heading1"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>EMPLOYMENT</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
|
||||||
|
{{#each r.employment.history}}
|
||||||
|
|
||||||
|
<wx:sub-section>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00606071" wsp:rsidP="00E578D4">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Heading2"/>
|
||||||
|
<w:tabs>
|
||||||
|
<w:tab w:val="right" w:pos="9360"/>
|
||||||
|
</w:tabs>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>{{ position }}, </w:t>
|
||||||
|
</w:r>
|
||||||
|
{{#if url}}<w:hlink w:dest="{{{ url }}}">{{/if}}
|
||||||
|
<w:r wsp:rsidR="009452CA" wsp:rsidRPr="00606071">
|
||||||
|
{{#if url}}
|
||||||
|
<w:rPr>
|
||||||
|
<w:rStyle w:val="Hyperlink"/>
|
||||||
|
</w:rPr>
|
||||||
|
{{/if}}
|
||||||
|
<w:t>{{ employer }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
{{#if url}}</w:hlink>{{/if}}
|
||||||
|
<w:r wsp:rsidR="00EA0B64">
|
||||||
|
<w:tab/>
|
||||||
|
</w:r>
|
||||||
|
<w:r wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>{{formatDate safe.start 'MMM YYYY'}} — {{formatDate safe.end 'MMM YYYY'}}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="000A3AF0" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:pPr>
|
||||||
|
{{{wpml summary true}}}
|
||||||
|
<!-- <w:r wsp:rsidRPr="000A3AF0">
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ summary }}</w:t>
|
||||||
|
</w:r> -->
|
||||||
|
</w:p>
|
||||||
|
|
||||||
|
{{#each highlights }}
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRDefault="009452CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="ListParagraph"/>
|
||||||
|
<w:listPr>
|
||||||
|
<w:ilvl w:val="0"/>
|
||||||
|
<w:ilfo w:val="1"/>
|
||||||
|
<wx:t wx:val="•"/>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
</w:listPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:pPr>
|
||||||
|
{{{wpml this true}}}
|
||||||
|
<!-- <w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ this }}</w:t>
|
||||||
|
</w:r> -->
|
||||||
|
</w:p>
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</wx:sub-section>
|
||||||
|
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</wx:sub-section>
|
73
themes/modern/src/partials/recognition.xml
Normal file
73
themes/modern/src/partials/recognition.xml
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
{{#if r.recognition}}
|
||||||
|
<wx:sub-section>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Heading1"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>RECOGNITION</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
|
||||||
|
{{#each r.recognition}}
|
||||||
|
|
||||||
|
<wx:sub-section>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00606071" wsp:rsidP="00E578D4">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Heading2"/>
|
||||||
|
<w:tabs>
|
||||||
|
<w:tab w:val="right" w:pos="9360"/>
|
||||||
|
</w:tabs>
|
||||||
|
</w:pPr>
|
||||||
|
{{#if url}}<w:hlink w:dest="{{{ url }}}">{{/if}}
|
||||||
|
<w:r wsp:rsidR="009452CA" wsp:rsidRPr="00606071">
|
||||||
|
{{#if url}}
|
||||||
|
<w:rPr>
|
||||||
|
<w:rStyle w:val="Hyperlink"/>
|
||||||
|
</w:rPr>
|
||||||
|
{{/if}}
|
||||||
|
<w:t>{{ title }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
{{#if url}}</w:hlink>{{/if}}
|
||||||
|
<w:r wsp:rsidR="00EA0B64">
|
||||||
|
<w:tab/>
|
||||||
|
</w:r>
|
||||||
|
<w:r wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>{{formatDate safe.date 'YYYY-MM'}}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="000A3AF0" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:pPr>
|
||||||
|
{{{wpml summary true }}}
|
||||||
|
</w:p>
|
||||||
|
|
||||||
|
{{#if highlights}}
|
||||||
|
{{#each highlights }}
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRDefault="009452CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="ListParagraph"/>
|
||||||
|
<w:listPr>
|
||||||
|
<w:ilvl w:val="0"/>
|
||||||
|
<w:ilfo w:val="1"/>
|
||||||
|
<wx:t wx:val="•"/>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
</w:listPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:pPr>
|
||||||
|
{{{wpml this true}}}
|
||||||
|
</w:p>
|
||||||
|
{{/each}}
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
</wx:sub-section>
|
||||||
|
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</wx:sub-section>
|
||||||
|
{{/if}}
|
86
themes/modern/src/partials/service.xml
Normal file
86
themes/modern/src/partials/service.xml
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
{{#if r.service }}
|
||||||
|
<wx:sub-section>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Heading1"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>SERVICE</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
|
||||||
|
{{#each r.service.history}}
|
||||||
|
|
||||||
|
<wx:sub-section>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00606071" wsp:rsidP="00E578D4">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Heading2"/>
|
||||||
|
<w:tabs>
|
||||||
|
<w:tab w:val="right" w:pos="9360"/>
|
||||||
|
</w:tabs>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>{{ position }}, </w:t>
|
||||||
|
</w:r>
|
||||||
|
{{#if url}}<w:hlink w:dest="{{{ url }}}">{{/if}}
|
||||||
|
<w:r wsp:rsidR="009452CA" wsp:rsidRPr="00606071">
|
||||||
|
{{#if url}}
|
||||||
|
<w:rPr>
|
||||||
|
<w:rStyle w:val="Hyperlink"/>
|
||||||
|
</w:rPr>
|
||||||
|
{{/if}}
|
||||||
|
<w:t>{{ organization }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
{{#if url}}</w:hlink>{{/if}}
|
||||||
|
<w:r wsp:rsidR="00EA0B64">
|
||||||
|
<w:tab/>
|
||||||
|
</w:r>
|
||||||
|
<w:r wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>{{formatDate safe.start 'MMM YYYY'}} — {{formatDate safe.end 'MMM YYYY'}}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="000A3AF0" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:pPr>
|
||||||
|
{{{wpml summary true}}}
|
||||||
|
<!-- <w:r wsp:rsidRPr="000A3AF0">
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ summary }}</w:t>
|
||||||
|
</w:r> -->
|
||||||
|
</w:p>
|
||||||
|
|
||||||
|
{{#each highlights }}
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRDefault="009452CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="ListParagraph"/>
|
||||||
|
<w:listPr>
|
||||||
|
<w:ilvl w:val="0"/>
|
||||||
|
<w:ilfo w:val="1"/>
|
||||||
|
<wx:t wx:val="•"/>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
</w:listPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:pPr>
|
||||||
|
{{{wpml this true}}}
|
||||||
|
<!-- <w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ this }}</w:t>
|
||||||
|
</w:r> -->
|
||||||
|
</w:p>
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</wx:sub-section>
|
||||||
|
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</wx:sub-section>
|
||||||
|
{{/if}}
|
63
themes/modern/src/partials/skills.xml
Normal file
63
themes/modern/src/partials/skills.xml
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
{{#if r.skills }}
|
||||||
|
<wx:sub-section>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Heading1"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>SKILLS</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
<w:tbl>
|
||||||
|
<w:tblPr>
|
||||||
|
<w:tblW w:w="0" w:type="auto"/>
|
||||||
|
<w:tblLook w:val="04A0"/>
|
||||||
|
</w:tblPr>
|
||||||
|
<w:tblGrid>
|
||||||
|
<w:gridCol w:w="3000"/>
|
||||||
|
<w:gridCol w:w="8000"/>
|
||||||
|
</w:tblGrid>
|
||||||
|
|
||||||
|
{{#each r.skills.sets}}
|
||||||
|
|
||||||
|
<w:tr wsp:rsidR="00427ECC" wsp:rsidTr="00FD3B33">
|
||||||
|
<w:tc>
|
||||||
|
<w:tcPr>
|
||||||
|
<w:tcW w:w="3000" w:type="dxa"/>
|
||||||
|
<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
|
||||||
|
</w:tcPr>
|
||||||
|
<w:p wsp:rsidR="00427ECC" wsp:rsidRDefault="00427ECC" wsp:rsidP="00427ECC">
|
||||||
|
<w:pPr>
|
||||||
|
<w:jc w:val="right"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:caps/>
|
||||||
|
<w:color w:val="989898"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ name }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
<w:tc>
|
||||||
|
<w:tcPr>
|
||||||
|
<w:tcW w:w="8000" w:type="dxa"/>
|
||||||
|
<w:shd w:val="clear" w:color="auto" w:fill="auto"/>
|
||||||
|
</w:tcPr>
|
||||||
|
<w:p wsp:rsidR="00427ECC" wsp:rsidRDefault="00427ECC" wsp:rsidP="00427ECC">
|
||||||
|
<w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:caps/>
|
||||||
|
<w:spacing w:val="22"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{#each skills }}{{ this }}{{#unless @last}} {{/unless}}{{/each}}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
</w:tc>
|
||||||
|
</w:tr>
|
||||||
|
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</w:tbl>
|
||||||
|
{{/if}}
|
||||||
|
</wx:sub-section>
|
78
themes/modern/src/partials/writing.xml
Normal file
78
themes/modern/src/partials/writing.xml
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
{{#if r.writing}}
|
||||||
|
<wx:sub-section>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Heading1"/>
|
||||||
|
</w:pPr>
|
||||||
|
<w:r wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>WRITING</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
|
||||||
|
{{#each r.writing}}
|
||||||
|
<wx:sub-section>
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00606071" wsp:rsidP="00E578D4">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="Heading2"/>
|
||||||
|
<w:tabs>
|
||||||
|
<w:tab w:val="right" w:pos="9360"/>
|
||||||
|
</w:tabs>
|
||||||
|
</w:pPr>
|
||||||
|
{{#if url}}<w:hlink w:dest="{{{ url }}}">{{/if}}
|
||||||
|
<w:r wsp:rsidR="009452CA" wsp:rsidRPr="00606071">
|
||||||
|
{{#if url}}
|
||||||
|
<w:rPr>
|
||||||
|
<w:rStyle w:val="Hyperlink"/>
|
||||||
|
</w:rPr>
|
||||||
|
{{/if}}
|
||||||
|
<w:t>{{ title }}</w:t>
|
||||||
|
</w:r>
|
||||||
|
{{#if url}}</w:hlink>{{/if}}
|
||||||
|
<w:r wsp:rsidR="00EA0B64">
|
||||||
|
<w:tab/>
|
||||||
|
</w:r>
|
||||||
|
<w:r wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA">
|
||||||
|
<w:t>{{formatDate safe.date 'YYYY'}}</w:t>
|
||||||
|
</w:r>
|
||||||
|
</w:p>
|
||||||
|
{{#if summary}}
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="000A3AF0" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:pPr>
|
||||||
|
{{{wpml summary true}}}
|
||||||
|
</w:p>
|
||||||
|
{{/if}}
|
||||||
|
|
||||||
|
{{#each highlights }}
|
||||||
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRDefault="009452CA" wsp:rsidP="00C146CA">
|
||||||
|
<w:pPr>
|
||||||
|
<w:pStyle w:val="ListParagraph"/>
|
||||||
|
<w:listPr>
|
||||||
|
<w:ilvl w:val="0"/>
|
||||||
|
<w:ilfo w:val="1"/>
|
||||||
|
<wx:t wx:val="•"/>
|
||||||
|
<wx:font wx:val="Calibri"/>
|
||||||
|
</w:listPr>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
</w:pPr>
|
||||||
|
{{{wpml this true}}}
|
||||||
|
<!-- <w:r>
|
||||||
|
<w:rPr>
|
||||||
|
<w:sz-cs w:val="20"/>
|
||||||
|
</w:rPr>
|
||||||
|
<w:t>{{ this }}</w:t>
|
||||||
|
</w:r> -->
|
||||||
|
</w:p>
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</wx:sub-section>
|
||||||
|
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
|
</wx:sub-section>
|
||||||
|
{{/if}}
|
@ -1,192 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<!-- [[[
|
|
||||||
title: Modern (PDF)
|
|
||||||
description: An HTML-driven PDF resume template for FluentCV's "modern" theme.
|
|
||||||
engine: Underscore
|
|
||||||
]]] -->
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<title>{{ r.name }}</title>
|
|
||||||
<link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
|
|
||||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
|
||||||
{{ headFragment }}
|
|
||||||
<style>
|
|
||||||
{{ cssInfo.data }}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<main id="main">
|
|
||||||
<div id="container">
|
|
||||||
<header>
|
|
||||||
<h1>{{ r.name }}</h1>
|
|
||||||
<div id="contact">
|
|
||||||
{% if (r.contact.email) { %}<div class="email">{{ RAW.contact.email }}</div>{% } %}
|
|
||||||
{% if (r.contact.phone) { %}<div class="phone">{{ RAW.contact.phone }}</div>{% } %}
|
|
||||||
{% if (r.contact.website) { %}<div class="website"><a href="{{ RAW.contact.website }}">{{ RAW.contact.website }}</a></div>{% } %}
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
{% if ( r.info.brief && r.info.brief.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="summary">
|
|
||||||
<h3>About</h3>
|
|
||||||
<span class="fa fa-lg fa-user"></span>
|
|
||||||
{{ r.info.brief }}
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.sets ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="skills">
|
|
||||||
<header>
|
|
||||||
<h3>Skills</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-code"></span>
|
|
||||||
|
|
||||||
<ul class="list-unstyled">
|
|
||||||
{% r.skills.sets.forEach( function(set) { %}
|
|
||||||
<li class="card card-nested card-skills">
|
|
||||||
<div class="skill-level" rel="tooltip" title="{{ set.level }}" data-placement="left">
|
|
||||||
<div class="skill-progress {{ set.level.toLowerCase() }}"></div>
|
|
||||||
</div>
|
|
||||||
<div class="skill-info">
|
|
||||||
<strong>{{ set.name }}</strong>
|
|
||||||
<div class="space-top labels">
|
|
||||||
{% if( set.skills && set.skills.length ) { %}
|
|
||||||
{% set.skills.forEach(function(kw) { %}
|
|
||||||
<span class="label label-keyword">{{ kw }}</span>
|
|
||||||
{% }); %}
|
|
||||||
{% } %}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
{% }); %}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.employment.history && r.employment.history.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="employment">
|
|
||||||
<header>
|
|
||||||
<h3>Employment</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-building"></span>
|
|
||||||
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
|
||||||
{% if( proj.url && proj.url.length ) { %}
|
|
||||||
<h4><span class="res-label">{{ proj.position }}</span>, <a href="{{ RAW.employment.history[idx].url }}">{{ proj.employer }}</a></h4>
|
|
||||||
{% } else { %}
|
|
||||||
<h4><span class="res-label">{{ proj.position }}</span>, <span class="defunct">{{ proj.employer }}</span></h4>
|
|
||||||
{% } %}
|
|
||||||
<span class="tenure">{{ proj.safe.start.format('YYYY-MM') }}—{{ proj.safe.end.format('YYYY-MM') }}</span>
|
|
||||||
{{ proj.summary }}
|
|
||||||
{% if( proj.highlights ) { %}
|
|
||||||
<ul>
|
|
||||||
{% proj.highlights.forEach( function( high, idx, ar) { %}
|
|
||||||
<li>{{ high }}</li>
|
|
||||||
{% }); %}
|
|
||||||
</ul>
|
|
||||||
{% } %}
|
|
||||||
{% }); %}
|
|
||||||
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.education.history && r.education.history.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="education">
|
|
||||||
<header>
|
|
||||||
<h3>Education</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-mortar-board"></span>
|
|
||||||
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
|
||||||
<h4>{{ edu.institution }}</h4>
|
|
||||||
<span class="tenure">{{ edu.safe.start.format('YYYY-MM') }}—{{ edu.safe.end.format('YYYY-MM') }}</span>
|
|
||||||
{% if( edu.courses ) { %}
|
|
||||||
<ul>
|
|
||||||
{% edu.courses.forEach( function( course, idx, ar) { %}
|
|
||||||
<li>{{ course }}</li>
|
|
||||||
{% }); %}
|
|
||||||
</ul>
|
|
||||||
{% } %}
|
|
||||||
{% }); %}
|
|
||||||
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
{% if( r.recognition && r.recognition.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="awards">
|
|
||||||
<header>
|
|
||||||
<h3>Awards</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-trophy"></span>
|
|
||||||
{% r.recognition.forEach( function( award, idx, ar) { %}
|
|
||||||
<h4><span class="res-label">{{ award.title }}</span>, {{ award.from }}</h4>
|
|
||||||
<span class="tenure">{{ award.date }}</span>
|
|
||||||
{{ award.summary }}
|
|
||||||
{% }); %}
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
{% if( r.writing && r.writing.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="publications">
|
|
||||||
<header>
|
|
||||||
<h3>Publications</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-pencil"></span>
|
|
||||||
{% r.writing.forEach( function( pub, idx, ar) { %}
|
|
||||||
<h4>
|
|
||||||
<span class="res-label">{{ filt.link(pub.title, pub.url) }}</span> {{ pub.publisher }}
|
|
||||||
</h4>
|
|
||||||
<span class="tenure">Published on: {{ pub.safe.date.format('YYYY-MM') }}</span>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% }); %}
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
{% if ( r.service.history && r.service.history.length ) { %}
|
|
||||||
<hr>
|
|
||||||
<section id="volunteer">
|
|
||||||
<header>
|
|
||||||
<h3>Volunteer Work</h3>
|
|
||||||
</header>
|
|
||||||
<span class="fa fa-lg fa-child"></span>
|
|
||||||
{% r.service.history.forEach( function( vol, idx, ar) { %}
|
|
||||||
{% if( vol.url && vol.url.length ) { %}
|
|
||||||
<h4><span class="res-label">{{ vol.position }}</span>, <a href="{{ vol.website }}">{{ vol.organization }}</a></h4>
|
|
||||||
{% } else { %}
|
|
||||||
<h4><span class="res-label">{{ vol.position }}</span>, <span class="defunct">{{ vol.organization }}</span></h4>
|
|
||||||
{% } %}
|
|
||||||
<span class="tenure">{{ vol.safe.start.format('YYYY-MM') }}—{{ vol.safe.end.format('YYYY-MM') }}</span>
|
|
||||||
{{ vol.summary }}
|
|
||||||
{% if( vol.highlights ) { %}
|
|
||||||
<ul>
|
|
||||||
{% vol.highlights.forEach( function( high, idx, ar) { %}
|
|
||||||
<li>{{ high }}</li>
|
|
||||||
{% }); %}
|
|
||||||
</ul>
|
|
||||||
{% } %}
|
|
||||||
{% }); %}
|
|
||||||
|
|
||||||
</section>
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</main>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,54 +0,0 @@
|
|||||||
{#
|
|
||||||
|
|
||||||
modern/txt.txt
|
|
||||||
A plain text resume template for FluentCV's "modern" theme.
|
|
||||||
|
|
||||||
#}
|
|
||||||
{{ r.name }}
|
|
||||||
{% if (r.contact.email) { %}Email: {{ r.contact.email }}{% } %}
|
|
||||||
{% if (r.contact.phone) { %}Tel: {{ r.contact.phone }}{% } %}
|
|
||||||
{% if (r.contact.website) { %}Web: {{ r.contact.website }}{% } %}
|
|
||||||
|
|
||||||
***
|
|
||||||
|
|
||||||
{% if ( r.info.brief && r.info.brief.length ) { %}{{ r.info.brief }}{% } %}
|
|
||||||
|
|
||||||
|
|
||||||
{% if ( r.skills && r.skills.sets && r.skills.sets.length ) { %}SKILLS
|
|
||||||
{% r.skills.sets.forEach( function( set ) { %}
|
|
||||||
- {{ set.name }}: {% set.skills.forEach(function(sk){ %}{{ sk }}, {% }); %}
|
|
||||||
{{ set.level }}
|
|
||||||
{% }); %}
|
|
||||||
{% } else if( r.skills && r.skills.list && r.skills.list.length ) { %}
|
|
||||||
|
|
||||||
{% } %}
|
|
||||||
|
|
||||||
{% if ( r.employment && r.employment.history ) { %}EMPLOYMENT
|
|
||||||
{% r.employment.history.forEach( function( proj, idx, ar) { %}
|
|
||||||
{{ proj.employer }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
|
|
||||||
{{ proj.summary }}
|
|
||||||
{% if( proj.highlights ) { %}{% proj.highlights.forEach( function( high ) { %}
|
|
||||||
- {{ high }}
|
|
||||||
{% }); } }); } %}
|
|
||||||
|
|
||||||
{% if ( r.education && r.education.history ) { %}EDUCATION
|
|
||||||
{% r.education.history.forEach( function( edu, idx, ar) { %}
|
|
||||||
{{ edu.institution }} ({{ edu.safe.start.format('YYYY-MM') }} — {{ edu.safe.end.format('YYYY-MM') }})
|
|
||||||
{{ edu.summary }}
|
|
||||||
{% if( edu.courses ) { %}{% edu.courses.forEach( function( course ) { %}
|
|
||||||
- {{ course }}
|
|
||||||
{% }); } }); } %}
|
|
||||||
|
|
||||||
{% if ( r.service && r.service.history ) { %}VOLUNTEER
|
|
||||||
{% r.service.history.forEach( function( srv, idx, ar) { %}
|
|
||||||
{{ srv.organization }} ({{ srv.safe.start.format('YYYY-MM') }} — {{ srv.safe.end.format('YYYY-MM') }})
|
|
||||||
{{ srv.summary }}
|
|
||||||
{% if( srv.highlights ) { %}{% srv.highlights.forEach( function( high ) { %}
|
|
||||||
- {{ high }}
|
|
||||||
{% }); } }); } %}
|
|
||||||
|
|
||||||
{% if ( r.writing && r.writing.length ) { %}WRITING
|
|
||||||
{% r.writing.forEach( function( wri, idx, ar) { %}
|
|
||||||
{{ wri.title }} ({{ wri.safe.date.format('YYYY-MM') }})
|
|
||||||
{{ wri.summary }}
|
|
||||||
{% }); } %}
|
|
Loading…
Reference in New Issue
Block a user