diff --git a/website/blog/templates/blog/blog_list_page.html b/website/blog/templates/blog/blog_list_page.html index 77c79fc..5d34ee5 100644 --- a/website/blog/templates/blog/blog_list_page.html +++ b/website/blog/templates/blog/blog_list_page.html @@ -4,6 +4,12 @@ {% include "common/hero.html" %} +{% if page.body_html %} +
+ {{ page.body_html|safe }} +
+{% endif %} +
{% for page in child_pages %} {% if not filtering_by_tag %} diff --git a/website/blog/templates/blog/blog_post_tag_list_page.html b/website/blog/templates/blog/blog_post_tag_list_page.html index a21f630..5a21c0b 100644 --- a/website/blog/templates/blog/blog_post_tag_list_page.html +++ b/website/blog/templates/blog/blog_post_tag_list_page.html @@ -4,10 +4,16 @@ {% include "common/hero.html" %} -
+{% if page.body_html %} +
+ {{ page.body_html|safe }} +
+{% endif %} + +
{% for tag in tags %} {% include "common/listing-item.html" with page=tag %} {% endfor %} -
+
{% endblock content %} diff --git a/website/blog/templates/blog/blog_post_tag_page.html b/website/blog/templates/blog/blog_post_tag_page.html index 08dd01e..cdf2916 100644 --- a/website/blog/templates/blog/blog_post_tag_page.html +++ b/website/blog/templates/blog/blog_post_tag_page.html @@ -4,10 +4,16 @@ {% include "common/hero.html" %} -
+{% if page.body_html %} +
+ {{ page.body_html|safe }} +
+{% endif %} + +
{% for page in pages %} {% include "common/listing-item.html" %} {% endfor %} -
+ {% endblock content %} diff --git a/website/common/templates/common/listing_page.html b/website/common/templates/common/listing_page.html index 7cac715..6ce8a08 100644 --- a/website/common/templates/common/listing_page.html +++ b/website/common/templates/common/listing_page.html @@ -4,10 +4,16 @@ {% include "common/hero.html" %} -
+{% if page.body_html %} +
+ {{ page.body_html|safe }} +
+{% endif %} + +
{% for page in child_pages %} {% include "common/listing-item.html" %} {% endfor %} -
+ {% endblock content %}