free_zed.gitlab.io/theme-uberspot/templates/tags.html

17 lines
371 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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>:{{ publications|count }}{% if not loop.last %}, {% endif %}
{% endfor %}
<br/>}
</section>
{% endblock %}