about summary refs log tree commit diff stats
path: root/themes/xmin/templates/tags/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/xmin/templates/tags/list.html')
-rw-r--r--themes/xmin/templates/tags/list.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/themes/xmin/templates/tags/list.html b/themes/xmin/templates/tags/list.html new file mode 100644 index 0000000..ee60c39 --- /dev/null +++ b/themes/xmin/templates/tags/list.html
@@ -0,0 +1,18 @@
1{% extends "base.html" %}
2
3{% block title %}{{ taxonomy.name | capitalize }}{% endblock %}
4
5{% block main %}
6<main>
7 <h1>{{ taxonomy.name | capitalize }}</h1>
8 <section>
9 <ul>
10 {%- for term in terms %}
11 <li>
12 <a href="{{ term.permalink }}">{{ term.name }}</a>
13 </li>
14 {%- endfor %}
15 </ul>
16 </section>
17</main>
18{% endblock %}