summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2016-12-05 20:49:09 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2016-12-05 20:49:09 +0100
commit2060f171b3775cea074f7b80ad6e32408bc7816a (patch)
treea27184d20b14f199309e904b9761746db0e9ab15
parentf40fceed53fd64ea65689cb15e5a0af24e4137f5 (diff)
downloadkyblo-2060f171b3775cea074f7b80ad6e32408bc7816a.tar.xz
Fix broken tag structure
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rw-r--r--templates/entry.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/entry.html b/templates/entry.html
index cdd759f..13e2bb5 100644
--- a/templates/entry.html
+++ b/templates/entry.html
@@ -1,4 +1,7 @@
{% extends 'layout.html' %}
+{% block head %}
+<title>{{ entry['title'] }}</title>
+{% endblock %}
{% block content %}
<article itemscope itemtype="http://schema.org/Article">
@@ -30,7 +33,7 @@
{% elif newer %}
<a href="{{ newer[0]['file'] }}.html">Newer ({{ newer[0]['title'] }})</a>
{% endif %}
-</nav>
</div>
+</nav>
{% endif %}
{% endblock %}