hhl/templates/categories/list.html

13 lines
286 B
HTML

{% extends "base.html" %}
{% block content %}
<ul>
<h1>Categories</h1>
{% for tag in terms %}
<li><a class="tags" href="{{ tag.permalink }}">{{ tag.name }}</a></li>
{% endfor %}
</ul>
<hr>
<a href="{{ get_url(path="/news/") }}">News Home</a>
{% endblock content %}