diff options
Diffstat (limited to 'templates/contexts/list.html')
| -rw-r--r-- | templates/contexts/list.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/contexts/list.html b/templates/contexts/list.html new file mode 100644 index 0000000..c6a529b --- /dev/null +++ b/templates/contexts/list.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block header %} +<p><a href="{{ current_path }}..">..</a>{{ current_path }}</p> +<h1>{{ taxonomy.name }}</h1> +{% endblock header %} + +{% block content %} +<p> +{% for term in terms %} +<a href="{{ term.permalink | safe }}">@{{ term.name }}</a> +{% endfor %} +</p> +{% endblock content %}
\ No newline at end of file |
