mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-13 04:10:10 +00:00
feat: add 'extracurricular' section
This commit is contained in:
parent
ac0b0a1cc6
commit
68e69a92a6
71
partials/doc/section/extracurricular.hbs
Normal file
71
partials/doc/section/extracurricular.hbs
Normal file
@ -0,0 +1,71 @@
|
||||
<wx:sub-section>
|
||||
|
||||
{{#> header-extracurricular }}
|
||||
{{> header-simple _title="EXTRACURRICULAR" _section="extracurricular" }}
|
||||
{{/header-extracurricular}}
|
||||
|
||||
{{#each r.extracurricular}}
|
||||
|
||||
<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>{{ title }}, </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>{{ activity }}</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:rPr>
|
||||
<w:rStyle w:val="FromTo"/>
|
||||
</w:rPr>
|
||||
<w:t>{{dateRange . '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: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:p>
|
||||
{{/each}}
|
||||
|
||||
</wx:sub-section>
|
||||
|
||||
{{/each}}
|
||||
|
||||
</wx:sub-section>
|
27
partials/html/section/extracurricular.hbs
Normal file
27
partials/html/section/extracurricular.hbs
Normal file
@ -0,0 +1,27 @@
|
||||
{{#section "extracurricular"}}
|
||||
<hr>
|
||||
<section id="extracurricular">
|
||||
{{#> header-extracurricular }}
|
||||
{{> header-icon _title="EXTRACURRICULAR" _section="extracurricular" _hdricon=(lookup . '_icon') }}
|
||||
{{/header-extracurricular}}
|
||||
|
||||
{{#each r.extracurricular}}
|
||||
{{#> body-extracurricular }}
|
||||
<div>
|
||||
<h3><em>{{ title }}</em>,
|
||||
{{#if url }}
|
||||
<a href="{{{ url }}}">{{ activity }}</a>
|
||||
{{else}}
|
||||
{{ activity }}
|
||||
{{/if}}
|
||||
</h3>
|
||||
{{#if location}}<span class="location">{{location}}</span>{{/if}}
|
||||
<span class="tenure">{{dateRange .}}</span>
|
||||
<p>{{{ summary }}}</p>
|
||||
{{> highlights }}
|
||||
{{#if keywords}}<span class="keywords">{{#each keywords}}{{{ . }}} {{/each}}</span>{{/if}}
|
||||
</div>
|
||||
{{/body-extracurricular}}
|
||||
{{/each}}
|
||||
</section>
|
||||
{{/section}}
|
14
partials/md/section/extracurricular.hbs
Normal file
14
partials/md/section/extracurricular.hbs
Normal file
@ -0,0 +1,14 @@
|
||||
{{#section "extracurricular"}}
|
||||
## {{{sectionTitle "EXTRACURRICULAR"}}}
|
||||
|
||||
{{#each r.extracurricular }}
|
||||
### {{{ title }}}, {{{ activity }}} ({{dateRange .}})
|
||||
{{{ summary }}}
|
||||
{{#if highlights}}
|
||||
{{#each highlights}}
|
||||
- {{{ this }}}
|
||||
{{/each}}
|
||||
{{/if}}
|
||||
|
||||
{{/each}}
|
||||
{{/section}}
|
14
partials/txt/section/extracurricular.hbs
Normal file
14
partials/txt/section/extracurricular.hbs
Normal file
@ -0,0 +1,14 @@
|
||||
{{#section "extracurricular"}}
|
||||
{{{sectionTitle "EXTRACURRICULAR"}}} ----------------------------------------------------------------
|
||||
|
||||
{{#each r.extracurricular }}
|
||||
{{{ title }}}, {{{ activity }}} ({{dateRange .}})
|
||||
{{{ summary }}}
|
||||
{{#if highlights}}
|
||||
{{#each highlights}}
|
||||
- {{{ this }}}
|
||||
{{/each}}
|
||||
{{/if}}
|
||||
|
||||
{{/each}}
|
||||
{{/section}}
|
@ -47,6 +47,8 @@
|
||||
|
||||
{{> section/service }}
|
||||
|
||||
{{> section/extracurricular }}
|
||||
|
||||
{{> section/samples }}
|
||||
|
||||
{{> section/writing }}
|
||||
|
@ -28,6 +28,8 @@
|
||||
|
||||
{{> section/recognition }}
|
||||
|
||||
{{> section/extracurricular }}
|
||||
|
||||
{{> section/speaking }}
|
||||
|
||||
{{> section/references }}
|
||||
|
@ -47,6 +47,8 @@
|
||||
|
||||
{{> section/service }}
|
||||
|
||||
{{> section/extracurricular }}
|
||||
|
||||
{{> section/samples }}
|
||||
|
||||
{{> section/writing }}
|
||||
|
@ -28,6 +28,8 @@
|
||||
|
||||
{{> section/recognition }}
|
||||
|
||||
{{> section/extracurricular }}
|
||||
|
||||
{{> section/references }}
|
||||
|
||||
{{> section/interests }}
|
||||
|
27
themes/positive/src/partials/extracurricular.hbs
Normal file
27
themes/positive/src/partials/extracurricular.hbs
Normal file
@ -0,0 +1,27 @@
|
||||
{{#section "extracurricular"}}
|
||||
<hr>
|
||||
<section id="extracurricular">
|
||||
{{#> header-extracurricular }}
|
||||
{{> header-icon _title="EXTRACURRICULAR" _section="extracurricular" _hdricon=(lookup . '_icon') }}
|
||||
{{/header-extracurricular}}
|
||||
|
||||
{{#each r.extracurricular}}
|
||||
{{#> body-extracurricular }}
|
||||
<div>
|
||||
<h3><em>{{ title }}</em>,
|
||||
{{#if url }}
|
||||
<a href="{{{ url }}}">{{ activity }}</a>
|
||||
{{else}}
|
||||
{{ activity }}
|
||||
{{/if}}
|
||||
</h3>
|
||||
<span class="tenure">{{dateRange .}}</span>
|
||||
{{#if location}}<span class="location">{{location}}</span>{{/if}}
|
||||
<p>{{{ summary }}}</p>
|
||||
{{> highlights }}
|
||||
{{#if keywords}}<span class="keywords">{{#each keywords}}{{{ . }}} {{/each}}</span>{{/if}}
|
||||
</div>
|
||||
{{/body-extracurricular}}
|
||||
{{/each}}
|
||||
</section>
|
||||
{{/section}}
|
@ -119,6 +119,11 @@
|
||||
{{/inline}}
|
||||
{{#section "service"}}{{> section/service }}{{/section}}
|
||||
|
||||
{{#*inline "header-extracurricular"}}
|
||||
{{> header-icon _title="EXTRACURRICULAR" _section="extracurricular" _icon="pict/srv" }}
|
||||
{{/inline}}
|
||||
{{#section "extracurricular"}}{{> section/extracurricular }}{{/section}}
|
||||
|
||||
{{#*inline "header-writing"}}
|
||||
{{> header-icon _title="WRITING" _section="writing" _icon="pict/wri" }}
|
||||
{{/inline}}
|
||||
|
@ -52,6 +52,9 @@
|
||||
{{#*inline "icon-service"}}<span class="fa fa-lg fa-child"></span>{{/inline}}
|
||||
{{> service _icon="icon-service"}}
|
||||
|
||||
{{#*inline "icon-extracurricular"}}<span class="fa fa-lg fa-child"></span>{{/inline}}
|
||||
{{> extracurricular _icon="icon-extracurricular"}}
|
||||
|
||||
{{#*inline "icon-samples"}}<span class="fa fa-lg fa-share"></span>{{/inline}}
|
||||
{{> section/samples _icon="icon-samples"}}
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{ r.name }}</title>
|
||||
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
|
||||
<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">
|
||||
{{{styleSheet "positive-pdf.css"}}}
|
||||
</head>
|
||||
@ -38,19 +38,22 @@
|
||||
{{> section/skills _icon="icon-skills"}}
|
||||
|
||||
{{#*inline "icon-employment"}}<span class="fa fa-lg fa-building"></span>{{/inline}}
|
||||
{{> section/employment _icon="icon-employment" }}
|
||||
{{> employment _icon="icon-employment"}}
|
||||
|
||||
{{#*inline "icon-projects"}}<span class="fa fa-lg fa-star"></span>{{/inline}}
|
||||
{{> section/projects _icon="icon-projects"}}
|
||||
|
||||
{{#*inline "icon-education"}}<span class="fa fa-lg fa-mortar-board"></span>{{/inline}}
|
||||
{{> section/education _icon="icon-education"}}
|
||||
{{> education _icon="icon-education"}}
|
||||
|
||||
{{#*inline "icon-affiliation"}}<span class="fa fa-lg fa-share-alt"></span>{{/inline}}
|
||||
{{> section/affiliation _icon="icon-affiliation"}}
|
||||
|
||||
{{#*inline "icon-service"}}<span class="fa fa-lg fa-child"></span>{{/inline}}
|
||||
{{> section/service _icon="icon-service"}}
|
||||
{{> service _icon="icon-service"}}
|
||||
|
||||
{{#*inline "icon-extracurricular"}}<span class="fa fa-lg fa-child"></span>{{/inline}}
|
||||
{{> extracurricular _icon="icon-extracurricular"}}
|
||||
|
||||
{{#*inline "icon-samples"}}<span class="fa fa-lg fa-share"></span>{{/inline}}
|
||||
{{> section/samples _icon="icon-samples"}}
|
||||
@ -68,11 +71,21 @@
|
||||
{{> section/speaking _icon="icon-speaking"}}
|
||||
|
||||
{{#*inline "icon-testimonials"}}<span class="fa fa-lg fa-quote-left"></span>{{/inline}}
|
||||
{{> section/testimonials _icon="icon-testimonials"}}
|
||||
{{> testimonials _icon="icon-testimonials"}}
|
||||
|
||||
{{#*inline "icon-references"}}<span class="fa fa-lg fa-thumbs-o-up"></span>{{/inline}}
|
||||
{{> section/references _icon="icon-references"}}
|
||||
{{#if r.references}}
|
||||
{{#section "references"}}
|
||||
<section id="references">
|
||||
{{#if r.contact.email}}
|
||||
<p><a href="mailto:{{{ r.contact.email }}}">References available on request</a></p>
|
||||
{{else}}
|
||||
<p>References available on request</p>
|
||||
{{/if}}
|
||||
</section>
|
||||
{{/section}}
|
||||
{{/if}}
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user