diff options
author | Nicolas Dato <nicolas.dato@gmail.com> | 2024-11-26 11:50:27 -0300 |
---|---|---|
committer | Nicolas Dato <nicolas.dato@gmail.com> | 2024-11-26 12:16:42 -0300 |
commit | 8354b8f77fdfd907f07574b63e910aba09232ade (patch) | |
tree | 14ea9df29a441c097f46b20b63f6c952e4e6ccb9 /zola/templates/taxonomy_list.html | |
parent | 40b19b34385a1c6dcefcfaa3e9fa2087ab16ff07 (diff) | |
download | ndato.com-8354b8f77fdfd907f07574b63e910aba09232ade.tar.gz ndato.com-8354b8f77fdfd907f07574b63e910aba09232ade.tar.bz2 |
first article, safer pointers
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 %} + |