11 lines
267 B
HTML
11 lines
267 B
HTML
{% extends "index.html" %}
|
|
|
|
{% for year, posts in section.pages | group_by(attribute="year") %}
|
|
<h2>{{ year }}</h2>
|
|
|
|
<ul>
|
|
{% for post in posts %}
|
|
<li><a href="{{ post.permalink }}">{{ post.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endfor %}
|