aboutsummaryrefslogtreecommitdiff
path: root/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/page.html')
-rw-r--r--templates/page.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/templates/page.html b/templates/page.html
index ab19904..3474a07 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -5,6 +5,14 @@
{% block content -%}
<h1>{{ page.title }}</h1>
+{% if page.taxonomies.tags %}
+<div class="tags">
+ {% for tag in page.taxonomies.tags %}
+ <a href="{{ get_taxonomy_url(kind="tags", name=tag) }}">#{{ tag }}</a>
+ {% endfor %}
+</div>
+{% endif %}
+
{{ page.content | safe -}}
<p class="date">{{ page.date | date(format="%B %d, %Y") }}</p>