{% load static %} {% load wagtailcore_tags %} {% for block in page.content %}
{% if block.block_type == "text_2_columns" %}
{{ block.value.left_text|richtext }}
{{ block.value.right_text|richtext }}

{% endif %} {% if block.block_type == "FAQ_columns" %}
{{ block.value.left_text|richtext }}
{% for faq in block.value.faqs %}

{{ faq.question }}

{{ faq.answer|richtext }}

{% endfor %}


{% endif %} {% if block.block_type == "news" %} {% for new in block.value %}

{{ new.header }}

{{ new.text|richtext }}
{% endfor %} {% endif %}
{% endfor %}