staticadventures/templates/skills/list.html

13 lines
244 B
HTML

{% extends "index.html" %}
{% block main %}
<section>
<h1>{{ taxonomy.name }}</h1>
<ul>
{% for term in terms %}
<li><a href="{{ term.permalink }}">{{ term.name }}</a></li>
{% endfor %}
</ul>
</section>
{% endblock main %}