templates/_archives.mustache
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<p>
This page lists all the <strong>{{articles-count}}</strong> articles I published on this site since its creation in 2004, sorted by publication month. Sadly, I don't publish new articles as often as I used to, but anyway, they are all here.
</p>
{{#archives}}
<h3>{{month}}</h3>
<ul>
{{#articles}}
<li>
{{date}} — <a href="/{{id}}">{{title}}</a>
</li>
{{/articles}}
</ul>
{{/archives}}
|