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

29 lines
564 B
HTML
Raw Normal View History

{{#section 'samples'}}
<hr>
<section id="samples">
<header>
<h2>{{{sectionTitle "Samples"}}}</h2>
{{#> icon-samples }}{{/icon-samples}}
2016-01-11 18:47:14 +00:00
</header>
{{#each r.samples}}
2016-01-11 18:47:14 +00:00
<div>
<h3>
{{#if url}}
<a href="{{{ url }}}">{{ title }}</a>
{{else}}
{{ title }}
{{/if}}
2016-01-11 17:33:14 +00:00
<span class="tenure">{{formatDate safe.date 'YYYY-MM'}}</span></h3>
{{{ summary }}}
{{#if highlights}}
<ul>
{{#each highlights}}
<li>{{{ this }}}</li>
{{/each}}
</ul>
{{/if}}
2016-01-11 18:47:14 +00:00
</div>
{{/each}}
</section>
{{/section}}