summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2016-11-16 14:43:03 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2016-11-16 14:43:03 +0100
commit5a572e41990a16f204fd5bf0df7a209b77b17aab (patch)
tree2bac5863b7aba5bc6aebb3c5b3938a7b43b0d207
parent1aa2f35f53bd4b75f6be9dfe38c4fca92ac6376a (diff)
downloadkyblo-5a572e41990a16f204fd5bf0df7a209b77b17aab.tar.xz
entry: Make header container actually a header tag
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
-rw-r--r--templates/entry.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/entry.html b/templates/entry.html
index 08f8ca0..1d58209 100644
--- a/templates/entry.html
+++ b/templates/entry.html
@@ -2,10 +2,10 @@
{% block content %}
<article itemscope itemtype="http://schema.org/Article">
- <div>
+ <header>
<h1>{{ entry['title'] }}</h1>
<time itemprop="datePublished" datetime="{{ entry['date'] }}">{{ entry['date'] }}</time>
- </div>
+ </header>
<div>
{{ content }}
</div>