diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-16 14:43:03 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-11-16 14:43:03 +0100 |
commit | 5a572e41990a16f204fd5bf0df7a209b77b17aab (patch) | |
tree | 2bac5863b7aba5bc6aebb3c5b3938a7b43b0d207 /templates | |
parent | 1aa2f35f53bd4b75f6be9dfe38c4fca92ac6376a (diff) | |
download | kyblo-5a572e41990a16f204fd5bf0df7a209b77b17aab.tar.xz |
entry: Make header container actually a header tag
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/entry.html | 4 |
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> |