mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-14 04:30:10 +00:00
28 lines
832 B
Handlebars
28 lines
832 B
Handlebars
{{#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}}
|