site_opytex/theme/templates/tags.html

19 lines
413 B
HTML
Raw Permalink Normal View History

2019-07-18 10:43:36 +00:00
{% extends "base.html" %}
{% block title %} – {{ _('Tags') }}{% endblock %}
{% block content %}
<article class="single">
<header>
<h1>{{ _('Tags') }}</h1>
</header>
<div>
<ul class="list">
{%- for tag, articles in tags|sort %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
</div>
</article>
{% endblock %}