{% extends "auth.html" %} {% block full_width_content %}

{{_('main_title')}}

{{_('main_subtitle')}}

{# image for large screens #} {# image for small screens #}
{% for section in content %}
{% if section['style'] == 'block' %}

{{ section['title'] }}

{{ section['text']|commonmark }}

{% elif section['style'] == 'pane-with-image-left' %}

{{ section['title'] }}

{{ section['text']|commonmark }}

{% elif section['style'] == 'pane-with-image-right' %}

{{ section['title'] }}

{{ section['text']|commonmark }}

{% elif section['style'] == 'columns' %}
{% for col in section['columns'] %}

{{ col['title'] }}

{{ col['text']|commonmark }}

{% endfor %}
{% endif %}
{% endfor %}
{% endblock %}