mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-14 20:50:11 +00:00
18 lines
469 B
Handlebars
18 lines
469 B
Handlebars
|
{{#section 'education'}}
|
||
|
## {{{sectionTitle "EDUCATION"}}}
|
||
|
|
||
|
{{#each r.education.history}}
|
||
|
{{#if url}}
|
||
|
### [{{{ institution }}}]({{{ url }}}) ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
||
|
{{else}}
|
||
|
### {{{ institution }}} ({{formatDate safe.start 'YYYY-MM' }} — {{formatDate safe.end 'YYYY-MM' }})
|
||
|
{{/if}}
|
||
|
{{#if summary }}
|
||
|
{{{ summary }}}
|
||
|
{{/if}}
|
||
|
{{#if courses}}
|
||
|
{{#each courses}}
|
||
|
- {{{ this }}}{{/each}}{{/if}}
|
||
|
{{/each}}
|
||
|
{{/section}}
|