premier commit

This commit is contained in:
2024-03-13 18:00:24 +01:00
parent 9b7a4c0714
commit 5a05f8c50d
20 changed files with 6722 additions and 1 deletions

11
templates/categories.html Normal file
View File

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}{{ SITENAME|striptags }} - Categories{% endblock %}
{% block content %}
<h2>Toutes les catégories sur {{ SITENAME }}</h2>
<ul>
{% for category, articles in categories|sort %}
<li><a href="{{ SITEURL }}/{{ category.url }}">{{ category }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
{% endblock %}