1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-09 11:52:31 +00:00
free_zed.gitlab.io/theme-uberspot/templates/categories.html

15 lines
402 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Categories{% endblock %}
{% block resume %}{% endblock resume %}
{% block content %}
<h1>Catégories dans {{ SITENAME }}</h1>
<ul>
{% for category, publications in categories|sort %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
{% endblock %}