templates/_archives.mustache
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<div class="container archives">
<div class="timeline clearfix d-none">
<p>
This page lists all the <strong>{{articles-count}}</strong> articles I published on this site, sorted by publication month.
</p>
{{#archives}}
<h3>{{month}}</h3>
<ul>
{{#articles}}
<li>
{{date}} — <a href="/{{id}}">{{title}}</a>
</li>
{{/articles}}
</ul>
{{/archives}}
</div>
</div>
|