1bit.pw/templates/blog/tags/list.html

14 lines
434 B
HTML

{% extends "content.html" %}
{% block title %}Tag - {{ config.title }}{% endblock %}
{% block meta_description %}Full list of tags used for articles within the blog.{% endblock meta_description %}
{% block content %}
<h1>Tags</h1>
{% if terms %}
<ul>
{% for term in terms %}
<li><a href="{{ term.permalink }}">{{ term.name }}</a> ({{ term.pages | length }})</li>
{% endfor %}
</ul>
{% endif %}
{% endblock content %}