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/mytheme/templates/tags.html

15 lines
352 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Tags{% endblock %}
{% block content %}
<section id="content" class="body">
<h2>Tags dans {{ SITENAME }}</h2>
{% for tag, articles in tags %}
<span><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>&nbsp({{ articles|count }})</span>
{% endfor %}
</section>
{% endblock %}