flex/templates/tags.html
Fidel Ramos c11530bbe2
Add id attribute to categories and tags pages
This allows linking to these pages below the fold.
2019-10-19 17:18:14 +00:00

18 lines
423 B
HTML

{% extends "base.html" %}
{% block title %} – {{ _('Tags') }}{% endblock %}
{% block content %}
<article class="single">
<header>
<h1 id="tags">{{ _('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 %}