1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-18 02:22:31 +00:00
free_zed.gitlab.io/theme-uberspot/templates/category.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

18 lines
458 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="{{ SITEURL }}/{{ CATEGORIES_URL }}">Parcourir les {{ categories|length }} categories</a></p>
{% endblock content %}