{% 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_columns" %}
{{ block.value.left_text|richtext }}
{{ block.value.right_text|richtext }}
{% endif %} {% if block.block_type == "gallery" %}
{% for picture in block.value %} {% image picture width-2000 as img %} {% image picture fill-300x200 as thumb %}
{{ thumb.alt }}
{% endfor %}
{% endif %} {% if block.block_type == "table" %}
{% include_block block %}
{% endif %} {% endfor %}