mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-14 12:40:11 +00:00
20 lines
351 B
Handlebars
20 lines
351 B
Handlebars
{{#section 'education'}}
|
|
## {{{sectionTitle "EDUCATION"}}}
|
|
|
|
{{#each r.education.history}}
|
|
{{#if url}}
|
|
### [{{{ institution }}}]({{{ url }}}) ({{dateRange .}})
|
|
{{else}}
|
|
### {{{ institution }}} ({{dateRange .}})
|
|
{{/if}}
|
|
|
|
{{#if summary }}
|
|
{{{ summary }}}
|
|
{{/if}}
|
|
{{#if courses}}
|
|
{{#each courses}}
|
|
- {{{ this }}}{{/each}}{{/if}}
|
|
|
|
{{/each}}
|
|
{{/section}}
|