diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-12-05 20:49:09 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-12-05 20:49:09 +0100 |
commit | 2060f171b3775cea074f7b80ad6e32408bc7816a (patch) | |
tree | a27184d20b14f199309e904b9761746db0e9ab15 /templates | |
parent | f40fceed53fd64ea65689cb15e5a0af24e4137f5 (diff) | |
download | kyblo-2060f171b3775cea074f7b80ad6e32408bc7816a.tar.xz |
Fix broken tag structure
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/entry.html | 5 |
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 %} |