free_zed.gitlab.io/theme-uberspot/templates/category.html

18 lines
440 B
HTML

{% extends "base.html" %}
{% block content %}
<h2>
{% block title %}
{{ articles|length }} «{{ category }}»
{% endblock %}
</h2>
<ul class="post-list">
{% for article in dates %}
<li>
<a href="/{{ article.url }}">{{ article.title }}</a>
<time>{{ article.locale_date }}</time>
</li>
{% endfor %}
</ul>
<p>&rarr; <a href="/categories.html">Parcourir les {{ categories|length }} categories</a></p>
{% endblock content %}