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
Freezed 8a0ffa824c 💄 Fix URLs & remove useless templates
TODO footer :
* Add pages
* Add last commit hash/link
* Bottom line

TODO plugin:
* post_stats
* tipue_search
* neighbors
* https://github.com/pelican-plugins/seo

Source : https://gitlab.com/axil/pelican-uberspot/-/blob/master/README.md
2020-07-25 23:06:29 +02:00

15 lines
382 B
HTML

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