1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-01 22:02:28 +00:00
free_zed.gitlab.io/theme-uberspot/templates/tag.html
Freezed 054182ba65 🚧 WIP: add new theme
Basic changes matching old theme.

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-24 01:16:32 +02:00

18 lines
457 B
HTML

{% extends "base.html" %}
{% block content %}
<h2>
{% block title %}
{{ articles|length }} publications taggées «{{ tag }}»
{% 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 }}/{{ TAGS_URL }}">Parcourir les {{ tags|length }} tags</a></p>
{% endblock content %}