a44fba59a2
The old method printed the date for every article even if they had the same publish date. This update prints the date once for all articles published on that date.
22 lines
556 B
HTML
22 lines
556 B
HTML
{% extends "base.html" %}
|
|
{% block title %} – Archives{% endblock %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<header>
|
|
<h1>Archives</h1>
|
|
</header>
|
|
<div>
|
|
<dl>
|
|
{% set previous_date = False %}
|
|
{% for article in dates %}
|
|
{% if article.locale_date != previous_date: %}
|
|
{% set previous_date = article.locale_date %}
|
|
<dt>{{ article.locale_date }}</dt>
|
|
{% endif %}
|
|
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
|
|
{% endfor %}
|
|
</dl>
|
|
</div>
|
|
</article>
|
|
{% endblock %}
|