all repos — h3rald @ 3db37a15df7786b5562a830db912d35800891ec8

The sources of https://h3rald.com

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}} &mdash; <a href="/{{id}}">{{title}}</a>
      </li>
    {{/articles}}
    </ul>
  {{/archives}}