{% load wagtailcore_tags wagtailimages_tags %}
{% for block in page.content %} {% if block.block_type == "title" %}

{{ block.value }}

{% endif %} {% if block.block_type == "text" %}
{{ block.value|richtext }}
{% endif %} {% if block.block_type == "text_centered" %}
{{ block.value|richtext }}
{% endif %} {% if block.block_type == "text_justify" %}
{{ block.value|richtext }}
{% endif %} {% if block.block_type == "text_3_columns" %}
{% for column in block.value %}
{{ column.value|richtext }}
{% endfor %}
{% endif %} {% if block.block_type == "carousel" %} {% endif %} {% if block.block_type == "carousel_text" %} {% endif %} {% if block.block_type == "FAQ" %}
{% for faq in block.value %} {% include_block faq %} {% endfor %}
{% endif %} {% if block.block_type == "meps" %} {% include_block block %} {% endif %} {% endfor %}