diff options
Diffstat (limited to 'zola/templates/taxonomy_list.html')
-rw-r--r-- | zola/templates/taxonomy_list.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/zola/templates/taxonomy_list.html b/zola/templates/taxonomy_list.html new file mode 100644 index 0000000..4827853 --- /dev/null +++ b/zola/templates/taxonomy_list.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} + +{% block title %}{{ taxonomy.name }}{% endblock %} +{% block header %}{{ taxonomy.name }}{% endblock %} +{% block navigation %}<a href="/">Home</a> > <a href="{{ current_path | safe }}">{{ taxonomy.name }}</a>{% endblock %} +{% block content %} +<dl title="List of {{ taxonomy.name }} entries"> +{% for term in terms %} +<dt> + <p><a href="{{ term.path | safe}}">{{ term.name }}</a></p> +</dt> +{% endfor %} +</dl> +{% endblock %} + |