hhl/templates/categories/list.html
2021-02-19 22:43:36 -05:00

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 %}