mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-29 03:52:38 +02:00
17 lines
409 B
HTML
17 lines
409 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section id="content" class="body">
|
|
<h1>Some archives for this blog</h1>
|
|
|
|
<dl>
|
|
{% for year in articles|groupby('date.year') %}
|
|
<dt>{{ year.grouper }}</dt>
|
|
<dd><ul>
|
|
{% for article in year.list %}
|
|
<li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
|
|
{% endfor %}
|
|
</ul></dd>
|
|
{% endfor %}
|
|
</dl>
|
|
</section>
|
|
{% endblock %}
|