about summary refs log tree commit diff
path: root/templates/blog.html
blob: cfdd8c2bc6393d0e3a240372c205af4ecdf64a29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "section.html" %}

{%- block content -%}

{%- for year, posts in section.pages | group_by(attribute="year") -%}
<section>
<ul class="post-list">
{%- for post in posts %}
<li>
  <a href="{{- post.path|safe -}}">{{- post.title -}}</a>
  <span class="post-date">{{ post.date | date(format="%d %h %Y")}}</span>
</li>
{%- endfor %}
</ul>

</section>
{%- endfor %}

{%- endblock content -%}