{% load wagtailcore_tags wagtailimages_tags %}
{% with layout=self.layout %} {% for column in self.content %} {% if layout == 'one-col' %}
{% elif layout == 'two-cols-equal' %}
{% elif layout == 'two-cols-left' and forloop.first %}
{% elif layout == 'two-cols-left' and not forloop.first %}
{% elif layout == 'two-cols-right' and forloop.first %}
{% elif layout == 'two-cols-right' and not forloop.first %}
{% elif layout == 'three-cols' %}
{% elif layout == 'four-cols' %}
{% elif layout == 'six-cols' %}
{% endif %} {% for block in column %} {% include_block block %} {% endfor %}
{% endfor %} {% endwith %}