diff --git a/templates/blog/blog_page.html b/templates/blog/blog_page.html index 4d1f9f7..9d545c6 100644 --- a/templates/blog/blog_page.html +++ b/templates/blog/blog_page.html @@ -5,14 +5,13 @@ {% block body_class %}template-blogpage{% endblock %} {% block content %} -

{{ page.title }}

-

{{ page.date }}

- - {% if page.main_image %} - {% image page.main_image width-400 %} - {% endif %} - -
{{ page.intro }}
- - {{ page.body|richtext }} + {% include 'common/header.html' with page=page %} +
+
+

+ Published: {{ page.date|datetime }} +

+ {{ page.body|richtext }} +
+
{% endblock %}