@@ -56,22 +56,24 @@
{% with item_1_class="d-xl-none mb-5 mb-xl-0" item_2_class="mb-5 mb-xl-0" item_3_class="mb-5 mb-md-0" %}
{% for item in items %}
+ {% with localized=item.blog.localized %}
-

+
- {% if item.blog.category.count %}
- {% with category=item.blog.category.first %}
+ {% if localized.category.count %}
+ {% with category=localized.category.first %}
{{ category }}
{% endwith %}
{% else %}
{% endif %}
-
+
{% include "./blog_authors.html" with blog_page=item.blog %}
+ {% endwith %}
{% endfor %}
{% endwith %}
diff --git a/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/partner.html b/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/partner.html
index 1e1d3c74a45..59124b998cf 100644
--- a/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/partner.html
+++ b/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/partner.html
@@ -11,7 +11,7 @@
{{ page.partner_heading }}
{{ page.partner_intro_text }}
{% endif %}
-
+
{{ page.partner_page_text }}
diff --git a/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/publication_hero.html b/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/publication_hero.html
index 0d08f126f6f..94343d02bf7 100644
--- a/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/publication_hero.html
+++ b/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/publication_hero.html
@@ -14,9 +14,11 @@
{% if is_publication_article or is_publication_page %}
- {% for parent_page in self.breadcrumb_list %}
+ {% for entry in self.breadcrumb_list %}
+ {% with parent_page=entry.localized %}
{{ parent_page.title }}
›
+ {% endwith %}
{% endfor %}
{% endif %}
diff --git a/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/spotlight_posts.html b/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/spotlight_posts.html
index 950aedf0965..82510d7043a 100644
--- a/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/spotlight_posts.html
+++ b/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/spotlight_posts.html
@@ -13,12 +13,14 @@
{{ page.spotlight_headline }}
{% for post in page.spotlight_posts.all %}
+ {% with localized=post.blog.localized %}
- {% include "./blog_authors.html" with blog_page=post.blog %}
+ {% include "./blog_authors.html" with blog_page=localized %}
+ {% endwith %}
{% endfor %}
diff --git a/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/take_action.html b/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/take_action.html
index 930bc697b6e..4065d43b4e2 100644
--- a/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/take_action.html
+++ b/network-api/networkapi/wagtailpages/templates/wagtailpages/fragments/take_action.html
@@ -9,18 +9,20 @@
{{ page.take_action_title }}
{% for item in page.take_action_cards.all %}
+ {% with target=item.internal_link.localized %}
+ {% endwith %}
{% endfor %}