about summary refs log tree commit diff stats
path: root/templates/tags/list.html
blob: ee60c39ec7525716ee6895b977337dbf70ee6a27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}

{% block title %}{{ taxonomy.name | capitalize }}{% endblock %}

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