1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-17 14:12:31 +00:00
free_zed.gitlab.io/theme-uberspot/templates/tags.html

17 lines
374 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Tags{% endblock %}
{% block content %}
<section>
<h2>Liste des tags</h2>
{<br/>
{% for tag, publications in tags %}
<a href="{{ SITEURL }}/{{ tag.url }}">'{{ tag }}'</a>:&nbsp;{{ publications|count }}{% if not loop.last %}, {% endif %}
{% endfor %}
<br/>}
</section>
{% endblock %}