1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2024-07-03 07:50:04 +01:00
fresh-themes/partials/html/section/samples.html
2016-01-11 10:17:54 -05:00

27 lines
538 B
HTML

{{#section 'samples'}}
<hr>
<section id="samples">
<header>
<h2>{{{sectionTitle "Samples"}}}</h2>
</header>
{{#> icon-samples }}{{/icon-samples}}
{{#each r.samples}}
<h3>
{{#if url}}
<a href="{{{ url }}}">{{ title }}</a>
{{else}}
{{ title }}
{{/if}}
<span class="tenure">{{formatDate date 'YYYY-MM'}}</span></h3>
{{{ summary }}}
{{#if highlights}}
<ul>
{{#each highlights}}
<li>{{{ this }}}</li>
{{/each}}
</ul>
{{/if}}
{{/each}}
</section>
{{/section}}