This commit is contained in:
hacksalot 2016-01-22 02:42:25 -05:00
parent aabb18d3a6
commit 3c84a9f17a
13 changed files with 102 additions and 7 deletions

View File

@ -0,0 +1,32 @@
<wx:sub-section>
{{#> header-interests }}
{{> header-interests _title="INTERESTS" _section="interests" }}
{{/header-interests}}
<wx:sub-section>
{{#each r.interests}}
<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>{{{ name }}}</w:t>
</w:r>
{{#if keywords}}
<w:r wsp:rsidR="00EA0B64">
<w:tab/>
</w:r>
<w:r wsp:rsidR="00C146CA" wsp:rsidRPr="00C146CA">
<w:t>{{#each keywords}}{{{ . }}}{{/each}}</w:t>
</w:r>
{{/if}}
</w:p>
{{/each}}
</wx:sub-section>
</wx:sub-section>

View File

@ -0,0 +1,18 @@
{{#section "interests"}}
<hr>
<section id="interests">
{{#> header-interests }}
{{> header-icon _title="INTERESTS" _section="interests" _hdricon=(lookup . '_icon') }}
{{/header-interests}}
{{#each r.interests}}
{{#> body-interests }}
<div>
<h3><em>{{{ name }}}</em></h3>
<span class="tenure">{{formatDate safe.date 'YYYY' }}</span>
{{{ summary }}}
{{> highlights }}
</div>
{{/body-interests}}
{{/each}}
</section>
{{/section}}

View File

@ -0,0 +1,12 @@
{{#section "interests"}}
## {{{sectionTitle "INTERESTS"}}}
{{#each r.interests}}
- {{{toUpper name }}}{{#if keywords}}: {{#each keywords}}{{{ . }}} {{/each}}{{/if}}
{{#if summary}}
{{{ summary }}}
{{/if}}
{{/each}}
{{/section}}

View File

@ -1,10 +1,12 @@
{{#section 'recognition'}}
{{#section "recognition"}}
## {{{sectionTitle "RECOGNITION"}}}
{{#each r.recognition}}
### *{{{ title }}}*, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
### {{{ title }}}{{#if from}}, {{{ from }}}{{/if}}
{{~#has 'safe.date'}} ({{formatDate safe.date 'MMM YYYY' }}){{/has}}
{{~#if summary}}
{{{ summary }}}
{{{ summary }}}{{/if}}
{{/each}}
{{/section}}

View File

@ -0,0 +1,12 @@
{{#section "interests"}}
{{{sectionTitle "INTERESTS"}}} ----------------------------------------------------------------------
{{#each r.interests}}
{{{toUpper name }}}{{#if keywords}}: {{#each keywords}}{{{ . }}} {{/each}}{{/if}}
{{~#if summary}}
{{{ summary }}}{{/if}}
{{/each}}
{{/section}}

View File

@ -2,8 +2,11 @@
{{{sectionTitle "RECOGNITION"}}} --------------------------------------------------------------------
{{#each r.recognition}}
{{{ title }}}, {{{ from }}} ({{formatDate safe.date 'MMM YYYY' }})
{{{ summary }}}
{{{ title }}}{{#if from}}, {{{ from }}}{{/if}}
{{~#has 'safe.date'}} ({{formatDate safe.date 'MMM YYYY' }}){{/has}}
{{~#if summary}}
{{{ summary }}}{{/if}}
{{/each}}
{{/section}}

View File

@ -3,7 +3,8 @@
{{#each r.writing}}
{{{ title }}}{{#has 'safe.date'}} ({{formatDate safe.date 'YYYY-MM' }}){{/has}}
{{{ summary }}}
{{#if summary}}{{{ summary }}}
{{/if}}
{{/each}}
{{/section}}

View File

@ -55,6 +55,10 @@
{{> section/speaking }}
{{> section/references }}
{{> section/interests }}
</main>

View File

@ -29,3 +29,5 @@
{{> section/speaking }}
{{> section/references }}
{{> section/interests }}

View File

@ -55,6 +55,10 @@
{{> section/speaking }}
{{> section/references }}
{{> section/interests }}
</main>

View File

@ -27,3 +27,5 @@
{{> section/recognition }}
{{> section/references }}
{{> section/interests }}

View File

@ -204,6 +204,7 @@
{{#*inline "header-recognition"}}{{> header-icon _title="RECOGNITION" _section="recognition" _icon="pict/rec" }}{{/inline}}
{{#*inline "header-speaking"}}{{> header-icon _title="SPEAKING" _section="speaking" _icon="pict/arrow" }}{{/inline}}
{{#*inline "header-references"}}{{> header-icon _title="REFERENCES" _section="references" _icon="pict/arrow" }}{{/inline}}
{{#*inline "header-interests"}}{{> header-icon _title="INTERESTS" _section="interests" _icon="pict/arrow" }}{{/inline}}
{{!<!--
@ -226,7 +227,7 @@
{{#section "writing"}}{{> section/reading }}{{/section}}
{{#section "recognition"}}{{> section/recognition }}{{/section}}
{{#section "speaking"}}{{> section/speaking }}{{/section}}
{{#section "references"}}{{> section/references }}{{/section}}
{{#section "interests"}}{{> section/interests }}{{/section}}
{{!<!--
And we're done! Close off the word document and go home.

View File

@ -319,6 +319,7 @@ also doesn't render any content.
{{#*inline "icon-speaking"}}<span class="fa fa-lg fa-users"></span>{{/inline}}
{{#*inline "icon-testimonials"}}<span class="fa fa-lg fa-quote-left"></span>{{/inline}}
{{#*inline "icon-references"}}<span class="fa fa-lg fa-thumbs-o-up"></span>{{/inline}}
{{#*inline "icon-interests"}}<span class="fa fa-lg fa-thumbs-o-up"></span>{{/inline}}
{{! <!--
And we're done with the customizations. For the rest of the resume, we'll
@ -334,6 +335,7 @@ also doesn't render any content.
{{> section/speaking _icon="icon-speaking"}}
{{> section/testimonials _icon="icon-testimonials"}}
{{> section/references _icon="icon-references"}}
{{> section/interests _icon="icon-interests"}}
</div>
</main>