diff options
| author | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-01-26 16:13:52 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <jj@r.bdr.sh> | 2026-01-27 16:20:37 +0100 |
| commit | c4be3181b6f9dc02f6b659506706445c11d9db45 (patch) | |
| tree | a6e386e7f0e92a008bbdf80cfbb55bc75dcbe4d6 /templates/taxonomy_list.html | |
| parent | 5737068b4153ba6173206bdb05e504a41ee87d3b (diff) | |
Add a blog
Diffstat (limited to 'templates/taxonomy_list.html')
| -rw-r--r-- | templates/taxonomy_list.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/taxonomy_list.html b/templates/taxonomy_list.html new file mode 100644 index 0000000..18e53ce --- /dev/null +++ b/templates/taxonomy_list.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} +{% import "header_macros.html" as header_macros %} + +{% block header %} + {{ header_macros::small_header() }} +{% endblock %} + +{% block content %} +<section class="taxonomy single-column"> + <h1>{{ taxonomy.name | title }}</h1> + <ul> + {% for term in terms %} + <li><a href="{{ term.permalink }}">{{ term.name }}</a></li> + {% endfor %} + </ul> +</section> +{% endblock %} |