blob: 68daf65a9094ada7d346a08c134b15316799629b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "base.html" %}
{% block content %}
{% set section = get_section(path="weblog/_index.md") %}
<div class="posts-list">
{% for year, posts in section.pages | group_by(attribute="year") %}
<h2>{{ year }}</h2>
<ul>
{% for post in posts %}
<li>{{ post.date }} - <a href="{{ post.permalink }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}
</div>
{% endblock %}
|