summaryrefslogtreecommitdiff
path: root/templates/taxonomy_list.html
blob: 652f4d71f63386f2e80d010c141a1f8261682f33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

{% block title %}Browse by {{taxonomy.name}}{% endblock title %}

{% block content %}
<h1 class="title">
  {{ taxonomy.name }}
</h1>
<ul>
  {% for term in terms %}
  <li><a href="{{ term.permalink | safe }}">#{{ term.name }}</a> </li>
  {% endfor %}
</ul>
{% endblock content %}