layout: default


<div class=“monthly-archive”>

<div>
  {% assign m = page.date | date: "%-m" %}
  <h1 class="title">Maandarchief voor <time datetime="{{ page.date | date: '%Y-%m' }}">{% include month.html month=m %} {{ page.date | date: "%Y" }}</time></h1>
</div>
<div>
    <dl>
        {% for post in page.posts reversed %}
        <dt>{% include date.html date=post.date %}</dt>
        <dd><a href="{{ post.url }}"><span>{{ post.title }}</span></a></dd>
        {% endfor %}
    </dl>
</div>

</div>