blog-theme/alchemy/templates/tags.html

15 lines
345 B
HTML

{% extends "base.html" %}
{% block title %}
{{ SITENAME }} — Tags
{% endblock %}
{% block content %}
<h1>Tags on {{ SITENAME }}</h1>
<ul class="list-unstyled">
{% for tag, articles in tags|sort %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>
{% endfor %}
</ul>
{% endblock %}