diff --git a/templates/projects/project_page.html b/templates/projects/project_page.html
index 10ff13ba8..db91f685e 100644
--- a/templates/projects/project_page.html
+++ b/templates/projects/project_page.html
@@ -8,9 +8,9 @@
- {% if page.body %}
- {% include_block page.body %}
- {% endif %}
+ {% for block in page.body %}
+ {% include_block block %}
+ {% endfor %}
diff --git a/templates/snippets/footer_menu.html b/templates/snippets/footer_menu.html
index 675ef255c..b6a8f8dfd 100644
--- a/templates/snippets/footer_menu.html
+++ b/templates/snippets/footer_menu.html
@@ -50,7 +50,7 @@
Address
{% endif %}
diff --git a/templates/springkit/blocks/cta/cta.html b/templates/springkit/blocks/cta/cta.html
index 6d19dc697..ce7625c08 100644
--- a/templates/springkit/blocks/cta/cta.html
+++ b/templates/springkit/blocks/cta/cta.html
@@ -1,7 +1,11 @@
{% load wagtailcore_tags %}
-{% if self.introduction %}
-
{{ self.introduction }}
-{% endif %}
+
+
+ {% if self.introduction %}
+
{{ self.introduction }}
+ {% endif %}
-{% include_block self.cta_buttons %}
+ {% include_block self.cta_buttons %}
+
+
diff --git a/templates/springkit/blocks/heading/jumplinkable_heading.html b/templates/springkit/blocks/heading/jumplinkable_heading.html
index 73b54eb8a..0f8ca6760 100644
--- a/templates/springkit/blocks/heading/jumplinkable_heading.html
+++ b/templates/springkit/blocks/heading/jumplinkable_heading.html
@@ -1,2 +1,4 @@
{% load wagtailcore_tags %}
-{% include_block self.heading %}
+
+ {% include_block self.heading %}
+
diff --git a/templates/text-content.html b/templates/text-content.html
index f7407c828..87d996cb7 100644
--- a/templates/text-content.html
+++ b/templates/text-content.html
@@ -3,6 +3,6 @@
{# Wrapper for migrated content. #}
{# This `div` is required to avoid big streamfield-spacing between typographic elements. #}
{# It also allows us to add some new styling to some of the olf content (e.g. outdented h2) #}
-
+
{{ value|richtext }}
\ No newline at end of file