summaryrefslogtreecommitdiffstats
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, 5 insertions, 3 deletions
diff --git a/templates/page.html b/templates/page.html
index 56317a7..5cdf946 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -7,9 +7,11 @@
Publisert: {{ page.date }}
{% if page.author %}av {{ page.author }}{% endif %}
</span>
- <span class="meta-tags">
- Merket: {{ page.taxonomies['tags'] | join(sep=", ") }}
- </span>
+ {% if page.taxonomies %}
+ <span class="meta-tags">
+ Merket: {{ page.taxonomies['tags'] | join(sep=", ") }}
+ </span>
+ {% endif %}
</div>
{{ page.content | safe }}
</article>