mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2025-05-03 04:17:07 +01:00
feat: add 'extracurricular' section
This commit is contained in:
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}}
|
Reference in New Issue
Block a user