aboutsummaryrefslogtreecommitdiff
path: root/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--templates/page.html12
1 files changed, 2 insertions, 10 deletions
diff --git a/templates/page.html b/templates/page.html
index 94b39ac..e027d8f 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -1,17 +1,9 @@
-{% extends "base.html" %}
-
-{% block title %}{{ page.title }} - {{ config.title }}{% endblock title %}
-
-{% block content -%}
+{% extends "base.html" %} {% block title %}{{ page.title }} - {{ config.title
+}}{% endblock title %} {% block content -%}
<h1>{{ page.title }}</h1>
<div class="metadata">
<span class="date">{{ page.date | date(format="%Y-%m-%d") }}</span>
- {%- if page.taxonomies.tags -%}
- &nbsp;/ {% for tag in page.taxonomies.tags %}
- <span class="tag"><a href="{{ get_taxonomy_url(kind="tags", name=tag) }}">#{{ tag }}</a></span>
- {% endfor %}
- {%- endif -%}
</div>
{{ page.content | safe -}}