diff options
author | François Kooman <fkooman@tuxed.net> | 2016-06-23 19:46:55 +0200 |
---|---|---|
committer | François Kooman <fkooman@tuxed.net> | 2016-06-23 19:46:55 +0200 |
commit | ee80d37140f0a4e9710450aae5d452401311fa67 (patch) | |
tree | 2775a5ecf54379d577ed1394d3086705df0acad9 /views | |
parent | e1e230db69d821cdd8d28c9cb8d73db0134520b5 (diff) | |
download | www.tuxed.net-ee80d37140f0a4e9710450aae5d452401311fa67.zip www.tuxed.net-ee80d37140f0a4e9710450aae5d452401311fa67.tar.gz www.tuxed.net-ee80d37140f0a4e9710450aae5d452401311fa67.tar.xz |
move published date under title
Diffstat (limited to 'views')
-rw-r--r-- | views/post.twig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/post.twig b/views/post.twig index 4f4f4de..4c69d29 100644 --- a/views/post.twig +++ b/views/post.twig @@ -8,12 +8,12 @@ <div class="content"> + <h2>{{ pageTitle|e }}</h2> + {% if post.published %} - <small>{{ post.published|e }}</small> + <small>Published: {{ post.published|e }}</small> {% endif %} - <h2>{{ pageTitle|e }}</h2> - {{ post.htmlContent|raw }} {% if post.modified %} |