mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-22 16:20:11 +00:00
Start using {{hasSection}} helper.
This commit is contained in:
parent
cf1360bc77
commit
f06f97d364
@ -513,9 +513,9 @@
|
|||||||
</w:r>
|
</w:r>
|
||||||
</w:p> -->
|
</w:p> -->
|
||||||
{{{wpml RAW.info.brief }}}
|
{{{wpml RAW.info.brief }}}
|
||||||
{{> skills }}
|
{{#hasSection "skills"}}{{> skills }}{{/hasSection}}
|
||||||
{{> employment }}
|
{{#hasSection "employment"}}{{> employment }}{{/hasSection}}
|
||||||
{{> education }}
|
{{#hasSection "education"}}{{> education }}{{/hasSection}}
|
||||||
<w:sectPr wsp:rsidR="00B43FDC" wsp:rsidRPr="000A3AF0" wsp:rsidSect="001B7422">
|
<w:sectPr wsp:rsidR="00B43FDC" wsp:rsidRPr="000A3AF0" wsp:rsidSect="001B7422">
|
||||||
<w:pgSz w:w="12240" w:h="15840"/>
|
<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:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="720" w:footer="720" w:gutter="0"/>
|
||||||
|
@ -18,14 +18,14 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
||||||
{{#if r.info.brief}}
|
{{#has "info.brief"}}
|
||||||
<section id="summary">
|
<section id="summary">
|
||||||
{{{ r.info.brief }}}
|
{{{ r.info.brief }}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/has}}
|
||||||
|
|
||||||
|
|
||||||
{{#if r.skills}}
|
{{#hasSection "skills"}}
|
||||||
<section id="skills">
|
<section id="skills">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-code"></span> {{{sectionTitle "Skills"}}}</h2><hr>
|
<h2><span class="fa fa-code"></span> {{{sectionTitle "Skills"}}}</h2><hr>
|
||||||
@ -47,11 +47,11 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{{#if r.employment}}
|
{{#hasSection "employment"}}
|
||||||
<section id="employment">
|
<section id="employment">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-building" style="vertical-align: top;"></span> {{{sectionTitle "Employment"}}}</h2><hr>
|
<h2><span class="fa fa-building" style="vertical-align: top;"></span> {{{sectionTitle "Employment"}}}</h2><hr>
|
||||||
@ -92,9 +92,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{# if r.education}}
|
{{#hasSection "education"}}
|
||||||
<section id="education">
|
<section id="education">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-mortar-board"></span> {{{sectionTitle "Education"}}}</h2><hr>
|
<h2><span class="fa fa-mortar-board"></span> {{{sectionTitle "Education"}}}</h2><hr>
|
||||||
@ -104,9 +104,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.service}}
|
{{#hasSection "service"}}
|
||||||
<section id="volunteer">
|
<section id="volunteer">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-child" style="vertical-align: top;"></span> {{{sectionTitle "Service"}}}</h2><hr>
|
<h2><span class="fa fa-child" style="vertical-align: top;"></span> {{{sectionTitle "Service"}}}</h2><hr>
|
||||||
@ -130,9 +130,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.writing}}
|
{{#hasSection "writing"}}
|
||||||
<section id="publications">
|
<section id="publications">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-book"></span> {{{sectionTitle "Writing"}}}</h2><hr>
|
<h2><span class="fa fa-book"></span> {{{sectionTitle "Writing"}}}</h2><hr>
|
||||||
@ -143,9 +143,9 @@
|
|||||||
{{# if summary}}{{{ summary }}}{{/if}}
|
{{# if summary}}{{{ summary }}}{{/if}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{# if r.recognition}}
|
{{#hasSection "recognition"}}
|
||||||
<section id="awards">
|
<section id="awards">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-trophy"></span> {{{sectionTitle "recognition" "Awards"}}}</h2><hr>
|
<h2><span class="fa fa-trophy"></span> {{{sectionTitle "recognition" "Awards"}}}</h2><hr>
|
||||||
@ -155,7 +155,7 @@
|
|||||||
{{ summary }}
|
{{ summary }}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
|
{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
|
||||||
|
|
||||||
{{#if r.skills}}
|
{{#if r.skills}}
|
||||||
## SKILLS
|
## {{{sectionTitle "SKILLS"}}}
|
||||||
|
|
||||||
{{#each r.skills.sets}}
|
{{#each r.skills.sets}}
|
||||||
- {{{ name }}}: {{#each this.skills}}{{{ this }}} {{/each}}
|
- {{{ name }}}: {{#each this.skills}}{{{ this }}} {{/each}}
|
||||||
@ -18,7 +18,6 @@
|
|||||||
## {{{sectionTitle "EMPLOYMENT"}}}
|
## {{{sectionTitle "EMPLOYMENT"}}}
|
||||||
|
|
||||||
{{#each r.employment.history }}
|
{{#each r.employment.history }}
|
||||||
{{#compare @index 4 operator="<"}}
|
|
||||||
### {{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
### {{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
||||||
{{{ summary }}}
|
{{{ summary }}}
|
||||||
{{#if highlights}}
|
{{#if highlights}}
|
||||||
@ -26,15 +25,6 @@
|
|||||||
- {{{ this }}}
|
- {{{ this }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/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}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
@ -19,14 +19,14 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
||||||
{{#if r.info.brief}}
|
{{#has "info.brief"}}
|
||||||
<section id="summary">
|
<section id="summary">
|
||||||
{{{ r.info.brief }}}
|
{{{ r.info.brief }}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/has}}
|
||||||
|
|
||||||
|
|
||||||
{{#if r.skills}}
|
{{#hasSection "skills"}}
|
||||||
<section id="skills">
|
<section id="skills">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-code"></span> {{{sectionTitle "Skills"}}}</h2><hr>
|
<h2><span class="fa fa-code"></span> {{{sectionTitle "Skills"}}}</h2><hr>
|
||||||
@ -48,11 +48,11 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{{#if r.employment}}
|
{{#hasSection "employment"}}
|
||||||
<section id="employment">
|
<section id="employment">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-building" style="vertical-align: top;"></span> {{{sectionTitle "Employment"}}}</h2><hr>
|
<h2><span class="fa fa-building" style="vertical-align: top;"></span> {{{sectionTitle "Employment"}}}</h2><hr>
|
||||||
@ -93,9 +93,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{# if r.education}}
|
{{#hasSection "education"}}
|
||||||
<section id="education">
|
<section id="education">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-mortar-board"></span> {{{sectionTitle "Education"}}}</h2><hr>
|
<h2><span class="fa fa-mortar-board"></span> {{{sectionTitle "Education"}}}</h2><hr>
|
||||||
@ -105,9 +105,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.service}}
|
{{#hasSection "service"}}
|
||||||
<section id="volunteer">
|
<section id="volunteer">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-child" style="vertical-align: top;"></span> {{{sectionTitle "Service"}}}</h2><hr>
|
<h2><span class="fa fa-child" style="vertical-align: top;"></span> {{{sectionTitle "Service"}}}</h2><hr>
|
||||||
@ -131,9 +131,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.writing}}
|
{{#hasSection "writing"}}
|
||||||
<section id="publications">
|
<section id="publications">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-book"></span> {{{sectionTitle "Writing"}}}</h2><hr>
|
<h2><span class="fa fa-book"></span> {{{sectionTitle "Writing"}}}</h2><hr>
|
||||||
@ -144,9 +144,9 @@
|
|||||||
{{# if summary}}{{{ summary }}}{{/if}}
|
{{# if summary}}{{{ summary }}}{{/if}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{# if r.recognition}}
|
{{#hasSection "recognition"}}
|
||||||
<section id="awards">
|
<section id="awards">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-trophy"></span> {{{sectionTitle "recognition" "Awards"}}}</h2><hr>
|
<h2><span class="fa fa-trophy"></span> {{{sectionTitle "recognition" "Awards"}}}</h2><hr>
|
||||||
@ -156,7 +156,7 @@
|
|||||||
{{ summary }}
|
{{ summary }}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
|
@ -1,9 +1,3 @@
|
|||||||
{{!
|
|
||||||
|
|
||||||
compact/txt.txt
|
|
||||||
A plain text resume template for FluentCV's "compact" theme.
|
|
||||||
|
|
||||||
}}
|
|
||||||
{{ r.name }}
|
{{ r.name }}
|
||||||
{{#if r.contact.email }}Email: {{{ r.contact.email }}}{{/if}}
|
{{#if r.contact.email }}Email: {{{ r.contact.email }}}{{/if}}
|
||||||
{{#if r.contact.phone }}Tel: {{{ r.contact.phone }}}{{/if}}
|
{{#if r.contact.phone }}Tel: {{{ r.contact.phone }}}{{/if}}
|
||||||
@ -12,19 +6,18 @@
|
|||||||
|
|
||||||
{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
|
{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
|
||||||
|
|
||||||
{{#if r.skills}}
|
{{#hasSection "skills"}}
|
||||||
SKILLS -------------------------------------------------------------------------
|
{{{sectionTitle "SKILLS"}}} -------------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.skills.sets}}
|
{{#each r.skills.sets}}
|
||||||
- {{{ name }}}: {{#each this.skills}}{{{ this }}} {{/each}}
|
- {{{ name }}}: {{#each skills}}{{{ this }}} {{/each}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.employment}}
|
{{#hasSection "employment"}}
|
||||||
EMPLOYMENT ---------------------------------------------------------------------
|
{{{sectionTitle "EMPLOYMENT"}}} ---------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.employment.history }}
|
{{#each r.employment.history }}
|
||||||
{{#compare @index 4 operator="<"}}
|
|
||||||
{{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
{{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
||||||
{{{ summary }}}
|
{{{ summary }}}
|
||||||
{{#if highlights}}
|
{{#if highlights}}
|
||||||
@ -33,19 +26,26 @@ EMPLOYMENT ---------------------------------------------------------------------
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{/compare}}
|
{{/each}}
|
||||||
{{#compare @index 4 operator=">="}}
|
{{/hasSection}}
|
||||||
{{#compare @index 4 operator="=="}}
|
|
||||||
Previously...
|
{{#hasSection 'projects'}}
|
||||||
Prior to {{{ employer }}}, I worked on a range of projects for companies large and small.
|
{{{sectionTitle "PROJECTS"}}} -----------------------------------------------------------------------
|
||||||
{{/compare}}
|
|
||||||
- {{{ position }}}, {{{ employer }}}
|
{{#each r.projects }}
|
||||||
{{/compare}}
|
{{{ title }}}, {{{ role }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
||||||
|
{{{ description }}}
|
||||||
|
{{{ summary }}}
|
||||||
|
{{#if highlights}}
|
||||||
|
{{#each highlights}}
|
||||||
|
- {{{ this }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{/each}}
|
||||||
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.education}}
|
{{#hasSection "education"}}
|
||||||
EDUCATION ----------------------------------------------------------------------
|
{{{sectionTitle "EDUCATION"}}} ----------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.education.history}}
|
{{#each r.education.history}}
|
||||||
{{{ institution }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
{{{ institution }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
||||||
@ -54,20 +54,24 @@ EDUCATION ----------------------------------------------------------------------
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if courses}}
|
{{#if courses}}
|
||||||
{{#each courses}}
|
{{#each courses}}
|
||||||
- {{{ this }}}{{/each}}{{/if}}
|
- {{{ this }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if r.writing}}
|
|
||||||
WRITING ------------------------------------------------------------------------
|
{{/each}}
|
||||||
|
{{/hasSection}}
|
||||||
|
|
||||||
|
{{#hasSection "writing"}}
|
||||||
|
{{{sectionTitle "WRITING"}}} ------------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.writing}}
|
{{#each r.writing}}
|
||||||
{{{ title }}} ({{formatDate safe.date 'YYYY-MM' }})
|
{{{ title }}} ({{formatDate safe.date 'YYYY-MM' }})
|
||||||
{{{ summary }}}
|
{{{ summary }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.service }}
|
{{#hasSection "service" }}
|
||||||
SERVICE ------------------------------------------------------------------------
|
{{{sectionTitle "SERVICE"}}} ------------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.service.history}}
|
{{#each r.service.history}}
|
||||||
{{{ organization }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
{{{ organization }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
||||||
@ -77,14 +81,14 @@ SERVICE ------------------------------------------------------------------------
|
|||||||
- {{{ this }}}
|
- {{{ this }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
{{#if r.recognition}}
|
|
||||||
RECOGNITION --------------------------------------------------------------------
|
{{#hasSection "recognition"}}
|
||||||
|
{{{sectionTitle "RECOGNITION"}}} --------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.recognition}}
|
{{#each r.recognition}}
|
||||||
{{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
|
{{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
|
||||||
{{{ summary }}}
|
{{{ summary }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
@ -33,6 +33,14 @@
|
|||||||
- {{ course }}
|
- {{ course }}
|
||||||
{% }); } }); } %}
|
{% }); } }); } %}
|
||||||
|
|
||||||
|
{% if ( r.projects && r.projects.length ) { %}{% print(h.sectionTitle('PROJECTS')) %}
|
||||||
|
{% r.projects.forEach( function( proj, idx, ar) { %}
|
||||||
|
{{ proj.title }} ({{ proj.safe.start.format('YYYY-MM') }} — {{ proj.safe.end.format('YYYY-MM') }})
|
||||||
|
{{ proj.summary }}
|
||||||
|
{% if( edu.courses ) { %}{% proj.highlights.forEach( function( course ) { %}
|
||||||
|
- {{ course }}
|
||||||
|
{% }); } }); } %}
|
||||||
|
|
||||||
{% if ( r.service && r.service.history ) { %}{% print(h.sectionTitle('service', 'VOLUNTEER')) %}
|
{% if ( r.service && r.service.history ) { %}{% print(h.sectionTitle('service', 'VOLUNTEER')) %}
|
||||||
{% r.service.history.forEach( function( srv, idx, ar) { %}
|
{% r.service.history.forEach( function( srv, idx, ar) { %}
|
||||||
{{ srv.organization }} ({{ srv.safe.start.format('YYYY-MM') }} — {{ srv.safe.end.format('YYYY-MM') }})
|
{{ srv.organization }} ({{ srv.safe.start.format('YYYY-MM') }} — {{ srv.safe.end.format('YYYY-MM') }})
|
||||||
|
@ -485,13 +485,13 @@
|
|||||||
</w:r>
|
</w:r>
|
||||||
</w:hlink>
|
</w:hlink>
|
||||||
</w:p>
|
</w:p>
|
||||||
{{> info }}
|
{{#hasSection "info"}}{{> info }}{{/hasSection}}
|
||||||
{{> skills }}
|
{{#hasSection "skills"}}{{> skills }}{{/hasSection}}
|
||||||
{{> employment }}
|
{{#hasSection "employment"}}{{> employment }}{{/hasSection}}
|
||||||
{{> education }}
|
{{#hasSection "education"}}{{> education }}{{/hasSection}}
|
||||||
{{> service }}
|
{{#hasSection "service"}}{{> service }}{{/hasSection}}
|
||||||
{{> writing }}
|
{{#hasSection "writing"}}{{> writing }}{{/hasSection}}
|
||||||
{{> recognition }}
|
{{#hasSection "recognition"}}{{> recognition }}{{/hasSection}}
|
||||||
<w:sectPr wsp:rsidR="00B43FDC" wsp:rsidRPr="000A3AF0" wsp:rsidSect="001B7422">
|
<w:sectPr wsp:rsidR="00B43FDC" wsp:rsidRPr="000A3AF0" wsp:rsidSect="001B7422">
|
||||||
<w:pgSz w:w="12240" w:h="15840"/>
|
<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:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="720" w:footer="720" w:gutter="0"/>
|
||||||
|
@ -91,7 +91,34 @@
|
|||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{# if r.education}}
|
{{#hasSection 'projects'}}
|
||||||
|
<hr>
|
||||||
|
<section id="projects">
|
||||||
|
<header>
|
||||||
|
<h3>{{{sectionTitle "Projects"}}}</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-building"></span>
|
||||||
|
{{#each r.projects}}
|
||||||
|
{{#if url}}
|
||||||
|
<h4><span class="res-label">{{ role }}</span>, <a href="{{{ url }}}">{{ title }}</a></h4>
|
||||||
|
{{else}}
|
||||||
|
<h4><span class="res-label">{{ role }}</span>, <span class="defunct">{{ title }}</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>
|
||||||
|
{{/hasSection}}
|
||||||
|
|
||||||
|
{{#hasSection 'education'}}
|
||||||
<hr>
|
<hr>
|
||||||
<section id="education">
|
<section id="education">
|
||||||
<header>
|
<header>
|
||||||
@ -111,7 +138,7 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.service}}
|
{{#if r.service}}
|
||||||
<hr>
|
<hr>
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
## {{{sectionTitle "EMPLOYMENT"}}}
|
## {{{sectionTitle "EMPLOYMENT"}}}
|
||||||
|
|
||||||
{{#each r.employment.history }}
|
{{#each r.employment.history }}
|
||||||
{{#compare @index 4 operator="<"}}
|
|
||||||
### {{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
### {{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
||||||
{{{ summary }}}
|
{{{ summary }}}
|
||||||
{{#if highlights}}
|
{{#if highlights}}
|
||||||
@ -26,15 +25,6 @@
|
|||||||
- {{{ this }}}
|
- {{{ this }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/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}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
@ -96,7 +96,34 @@
|
|||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{# if r.education}}
|
{{#hasSection 'projects'}}
|
||||||
|
<hr>
|
||||||
|
<section id="projects">
|
||||||
|
<header>
|
||||||
|
<h3>{{{sectionTitle "Projects"}}}</h3>
|
||||||
|
</header>
|
||||||
|
<span class="fa fa-lg fa-building"></span>
|
||||||
|
{{#each r.projects}}
|
||||||
|
{{#if url}}
|
||||||
|
<h4><span class="res-label">{{ role }}</span>, <a href="{{{ url }}}">{{ title }}</a></h4>
|
||||||
|
{{else}}
|
||||||
|
<h4><span class="res-label">{{ role }}</span>, <span class="defunct">{{ title }}</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>
|
||||||
|
{{/hasSection}}
|
||||||
|
|
||||||
|
{{#hasSection 'education'}}
|
||||||
<hr>
|
<hr>
|
||||||
<section id="education">
|
<section id="education">
|
||||||
<header>
|
<header>
|
||||||
@ -116,7 +143,7 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.service}}
|
{{#if r.service}}
|
||||||
<hr>
|
<hr>
|
||||||
|
@ -6,19 +6,18 @@
|
|||||||
|
|
||||||
{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
|
{{#if r.info.brief }}{{{ r.info.brief }}}{{/if}}
|
||||||
|
|
||||||
{{#if r.skills}}
|
{{#hasSection "skills"}}
|
||||||
{{{sectionTitle "SKILLS"}}} -------------------------------------------------------------------------
|
{{{sectionTitle "SKILLS"}}} -------------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.skills.sets}}
|
{{#each r.skills.sets}}
|
||||||
- {{{ name }}}: {{#each this.skills}}{{{ this }}} {{/each}}
|
- {{{ name }}}: {{#each skills}}{{{ this }}} {{/each}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.employment}}
|
{{#hasSection "employment"}}
|
||||||
{{{sectionTitle "EMPLOYMENT"}}} ---------------------------------------------------------------------
|
{{{sectionTitle "EMPLOYMENT"}}} ---------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.employment.history }}
|
{{#each r.employment.history }}
|
||||||
{{#compare @index 4 operator="<"}}
|
|
||||||
{{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
{{{ position }}}, {{{ employer }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
||||||
{{{ summary }}}
|
{{{ summary }}}
|
||||||
{{#if highlights}}
|
{{#if highlights}}
|
||||||
@ -27,18 +26,25 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{/compare}}
|
{{/each}}
|
||||||
{{#compare @index 4 operator=">="}}
|
{{/hasSection}}
|
||||||
{{#compare @index 4 operator="=="}}
|
|
||||||
Previously...
|
{{#hasSection 'projects'}}
|
||||||
Prior to {{{ employer }}}, I worked on a range of projects for companies large and small.
|
{{{sectionTitle "PROJECTS"}}} -----------------------------------------------------------------------
|
||||||
{{/compare}}
|
|
||||||
- {{{ position }}}, {{{ employer }}}
|
{{#each r.projects }}
|
||||||
{{/compare}}
|
{{{ title }}}, {{{ role }}} ({{formatDate safe.start 'YYYY-MM' }} -- {{formatDate safe.end 'YYYY-MM' }})
|
||||||
|
{{{ description }}}
|
||||||
|
{{{ summary }}}
|
||||||
|
{{#if highlights}}
|
||||||
|
{{#each highlights}}
|
||||||
|
- {{{ this }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
{{/each}}
|
||||||
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.education}}
|
{{#hasSection "education"}}
|
||||||
{{{sectionTitle "EDUCATION"}}} ----------------------------------------------------------------------
|
{{{sectionTitle "EDUCATION"}}} ----------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.education.history}}
|
{{#each r.education.history}}
|
||||||
@ -48,19 +54,23 @@ Prior to {{{ employer }}}, I worked on a range of projects for companies large a
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if courses}}
|
{{#if courses}}
|
||||||
{{#each courses}}
|
{{#each courses}}
|
||||||
- {{{ this }}}{{/each}}{{/if}}
|
- {{{ this }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if r.writing}}
|
|
||||||
|
{{/each}}
|
||||||
|
{{/hasSection}}
|
||||||
|
|
||||||
|
{{#hasSection "writing"}}
|
||||||
{{{sectionTitle "WRITING"}}} ------------------------------------------------------------------------
|
{{{sectionTitle "WRITING"}}} ------------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.writing}}
|
{{#each r.writing}}
|
||||||
{{{ title }}} ({{formatDate safe.date 'YYYY-MM' }})
|
{{{ title }}} ({{formatDate safe.date 'YYYY-MM' }})
|
||||||
{{{ summary }}}
|
{{{ summary }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.service }}
|
{{#hasSection "service" }}
|
||||||
{{{sectionTitle "SERVICE"}}} ------------------------------------------------------------------------
|
{{{sectionTitle "SERVICE"}}} ------------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.service.history}}
|
{{#each r.service.history}}
|
||||||
@ -71,14 +81,14 @@ Prior to {{{ employer }}}, I worked on a range of projects for companies large a
|
|||||||
- {{{ this }}}
|
- {{{ this }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
{{#if r.recognition}}
|
|
||||||
|
{{#hasSection "recognition"}}
|
||||||
{{{sectionTitle "RECOGNITION"}}} --------------------------------------------------------------------
|
{{{sectionTitle "RECOGNITION"}}} --------------------------------------------------------------------
|
||||||
|
|
||||||
{{#each r.recognition}}
|
{{#each r.recognition}}
|
||||||
{{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
|
{{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
|
||||||
{{{ summary }}}
|
{{{ summary }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
{{#if r.recognition}}
|
|
||||||
<wx:sub-section>
|
<wx:sub-section>
|
||||||
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
<w:pPr>
|
<w:pPr>
|
||||||
@ -70,4 +69,3 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</wx:sub-section>
|
</wx:sub-section>
|
||||||
{{/if}}
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
{{#if r.service }}
|
|
||||||
<wx:sub-section>
|
<wx:sub-section>
|
||||||
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
<w:pPr>
|
<w:pPr>
|
||||||
@ -83,4 +82,3 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</wx:sub-section>
|
</wx:sub-section>
|
||||||
{{/if}}
|
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
{{#if r.skills }}
|
|
||||||
<wx:sub-section>
|
<wx:sub-section>
|
||||||
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
<w:pPr>
|
<w:pPr>
|
||||||
@ -59,5 +58,4 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</w:tbl>
|
</w:tbl>
|
||||||
{{/if}}
|
|
||||||
</wx:sub-section>
|
</wx:sub-section>
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
{{#if r.writing}}
|
|
||||||
<wx:sub-section>
|
<wx:sub-section>
|
||||||
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
<w:p wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA" wsp:rsidRDefault="00C146CA" wsp:rsidP="00C146CA">
|
||||||
<w:pPr>
|
<w:pPr>
|
||||||
@ -75,4 +74,3 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</wx:sub-section>
|
</wx:sub-section>
|
||||||
{{/if}}
|
|
||||||
|
@ -526,12 +526,12 @@
|
|||||||
<w:t>{{ r.info.brief }}</w:t>
|
<w:t>{{ r.info.brief }}</w:t>
|
||||||
</w:r> -->
|
</w:r> -->
|
||||||
</w:p>
|
</w:p>
|
||||||
{{> skills }}
|
{{#hasSection "skills"}}{{> skills }}{{/hasSection}}
|
||||||
{{> employment }}
|
{{#hasSection "employment"}}{{> employment }}{{/hasSection}}
|
||||||
{{> education }}
|
{{#hasSection "education"}}{{> education }}{{/hasSection}}
|
||||||
{{> service }}
|
{{#hasSection "service"}}{{> service }}{{/hasSection}}
|
||||||
{{> writing }}
|
{{#hasSection "writing"}}{{> writing }}{{/hasSection}}
|
||||||
{{> recognition }}
|
{{#hasSection "recognition"}}{{> recognition }}{{/hasSection}}
|
||||||
<w:sectPr wsp:rsidR="00B43FDC" wsp:rsidRPr="000A3AF0" wsp:rsidSect="001B7422">
|
<w:sectPr wsp:rsidR="00B43FDC" wsp:rsidRPr="000A3AF0" wsp:rsidSect="001B7422">
|
||||||
<w:pgSz w:w="12240" w:h="15840"/>
|
<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:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="720" w:footer="720" w:gutter="0"/>
|
||||||
|
@ -20,14 +20,14 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
||||||
{{#if r.info.brief}}
|
{{#has "info.brief"}}
|
||||||
<section id="summary">
|
<section id="summary">
|
||||||
{{{ r.info.brief }}}
|
{{{ r.info.brief }}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/has}}
|
||||||
|
|
||||||
|
|
||||||
{{#if r.skills}}
|
{{#hasSection "skills"}}
|
||||||
<section id="skills">
|
<section id="skills">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-code"></span> Skills</h2>
|
<h2><span class="fa fa-code"></span> Skills</h2>
|
||||||
@ -49,11 +49,11 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{{#if r.employment}}
|
{{#hasSection "employment"}}
|
||||||
<section id="employment">
|
<section id="employment">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-building" style="vertical-align: top;"></span> {{{sectionTitle "Employment"}}}</h2>
|
<h2><span class="fa fa-building" style="vertical-align: top;"></span> {{{sectionTitle "Employment"}}}</h2>
|
||||||
@ -94,9 +94,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{# if r.education}}
|
{{#hasSection "education"}}
|
||||||
<section id="education">
|
<section id="education">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-mortar-board"></span> {{{sectionTitle "Education"}}}</h2>
|
<h2><span class="fa fa-mortar-board"></span> {{{sectionTitle "Education"}}}</h2>
|
||||||
@ -106,9 +106,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.service}}
|
{{#hasSection "service"}}
|
||||||
<section id="volunteer">
|
<section id="volunteer">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-child" style="vertical-align: top;"></span> {{{sectionTitle "Service"}}}</h2>
|
<h2><span class="fa fa-child" style="vertical-align: top;"></span> {{{sectionTitle "Service"}}}</h2>
|
||||||
@ -132,9 +132,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.writing}}
|
{{#hasSection "writing"}}
|
||||||
<section id="publications">
|
<section id="publications">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-book"></span> {{{sectionTitle "Writing"}}}</h2>
|
<h2><span class="fa fa-book"></span> {{{sectionTitle "Writing"}}}</h2>
|
||||||
@ -145,9 +145,9 @@
|
|||||||
{{# if summary}}{{{ summary }}}{{/if}}
|
{{# if summary}}{{{ summary }}}{{/if}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{# if r.recognition}}
|
{{#hasSection "recognition"}}
|
||||||
<section id="awards">
|
<section id="awards">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-trophy"></span> {{{"sectionTitle" "recognition" "Awards"}}}</h2>
|
<h2><span class="fa fa-trophy"></span> {{{"sectionTitle" "recognition" "Awards"}}}</h2>
|
||||||
@ -157,7 +157,7 @@
|
|||||||
{{{ summary }}}
|
{{{ summary }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/has}}
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
|
@ -21,14 +21,14 @@
|
|||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
||||||
{{#if r.info.brief}}
|
{{#has "info.brief"}}
|
||||||
<section id="summary">
|
<section id="summary">
|
||||||
{{{ r.info.brief }}}
|
{{{ r.info.brief }}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/has}}
|
||||||
|
|
||||||
|
|
||||||
{{#if r.skills}}
|
{{#hasSection "skills"}}
|
||||||
<section id="skills">
|
<section id="skills">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-code"></span> Skills</h2>
|
<h2><span class="fa fa-code"></span> Skills</h2>
|
||||||
@ -50,11 +50,11 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{{#if r.employment}}
|
{{#hasSection "employment"}}
|
||||||
<section id="employment">
|
<section id="employment">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-building" style="vertical-align: top;"></span> {{{sectionTitle "Employment"}}}</h2>
|
<h2><span class="fa fa-building" style="vertical-align: top;"></span> {{{sectionTitle "Employment"}}}</h2>
|
||||||
@ -95,9 +95,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{# if r.education}}
|
{{#hasSection "education"}}
|
||||||
<section id="education">
|
<section id="education">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-mortar-board"></span> {{{sectionTitle "Education"}}}</h2>
|
<h2><span class="fa fa-mortar-board"></span> {{{sectionTitle "Education"}}}</h2>
|
||||||
@ -107,9 +107,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.service}}
|
{{#hasSection "service"}}
|
||||||
<section id="volunteer">
|
<section id="volunteer">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-child" style="vertical-align: top;"></span> {{{sectionTitle "Service"}}}</h2>
|
<h2><span class="fa fa-child" style="vertical-align: top;"></span> {{{sectionTitle "Service"}}}</h2>
|
||||||
@ -133,9 +133,9 @@
|
|||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{#if r.writing}}
|
{{#hasSection "writing"}}
|
||||||
<section id="publications">
|
<section id="publications">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-book"></span> {{{sectionTitle "Writing"}}}</h2>
|
<h2><span class="fa fa-book"></span> {{{sectionTitle "Writing"}}}</h2>
|
||||||
@ -146,9 +146,9 @@
|
|||||||
{{# if summary}}{{{ summary }}}{{/if}}
|
{{# if summary}}{{{ summary }}}{{/if}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/hasSection}}
|
||||||
|
|
||||||
{{# if r.recognition}}
|
{{#hasSection "recognition"}}
|
||||||
<section id="awards">
|
<section id="awards">
|
||||||
<header>
|
<header>
|
||||||
<h2><span class="fa fa-trophy"></span> {{{"sectionTitle" "recognition" "Awards"}}}</h2>
|
<h2><span class="fa fa-trophy"></span> {{{"sectionTitle" "recognition" "Awards"}}}</h2>
|
||||||
@ -158,7 +158,7 @@
|
|||||||
{{{ summary }}}
|
{{{ summary }}}
|
||||||
{{/each}}
|
{{/each}}
|
||||||
</section>
|
</section>
|
||||||
{{/if}}
|
{{/has}}
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
|
Loading…
Reference in New Issue
Block a user