mfw i accidentally commited from the static/pictures directory

This commit is contained in:
fzorb 2025-05-16 07:00:55 +03:00
parent 867d9e2277
commit 1189065cde
17 changed files with 160 additions and 0 deletions

9
templates/section.html Normal file
View file

@ -0,0 +1,9 @@
{% 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 %}