mirror of
https://github.com/JuanCanham/fresh-theme-bootstrap.git
synced 2025-04-04 23:59:36 +01:00
22 lines
758 B
HTML
22 lines
758 B
HTML
{{#section 'education'}}
|
|
<hr>
|
|
<section class="row">
|
|
<h3 class="{{headerClass}}"><span class="fa fa-fw fa-mortar-board"></span> {{{sectionTitle "Education"}}}</h3>
|
|
<div class="{{contentClass}}">
|
|
{{#each r.education.history}}
|
|
{{#if studyType}}<h4><strong>{{studyType}}</strong>, {{/if}}{{#if url}}<a href="{{{url}}}">{{institution}}</a>{{else}}{{{institution}}}{{/if}}</h4>
|
|
{{#if area}}<h5>{{area}}</h5>{{/if}}
|
|
{{formatDate safe.start 'YYYY-MM'}}—{{formatDate safe.end 'YYYY-MM'}}
|
|
{{#if curriculum}}
|
|
<ul>
|
|
{{#each curriculum}}
|
|
<li>{{{this}}}</li>
|
|
{{/each}}
|
|
</ul>
|
|
{{/if}}
|
|
{{#unless @last}}<div> </div>{{/unless}}
|
|
{{/each}}
|
|
</div>
|
|
</section>
|
|
{{/section}}
|