diff options
Diffstat (limited to 'templates/page.html')
| -rw-r--r-- | templates/page.html | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/templates/page.html b/templates/page.html index 1e395e3..aab169f 100644 --- a/templates/page.html +++ b/templates/page.html @@ -29,4 +29,20 @@ Table of contents {% endif %} {{ page.content | safe }} -{% endblock content %}
\ No newline at end of file +{% endblock content %} + +{% block footer %} +<p class="taxonomies"> +{% if page.taxonomies.tags %} +{% for tag in page.taxonomies.tags %} +<a href="/tags/{{ tag | slugify }}">#{{ tag }}</a> +{% endfor %} +{% for category in page.taxonomies.categories %} +<a href="/categories/{{ category | slugify }}">+{{ category }}</a> +{% endfor %} +{% for context in page.taxonomies.contexts %} +<a href="/contexts/{{ context | slugify }}">@{{ context }}</a> +{% endfor %} +{% endif %} +</p> +{% endblock footer %}
\ No newline at end of file |
