{% extends ":nature:base.html.twig" %} {% block content %}
{% if slotHasContent(['top1', 'top2', 'top1', 'top3']) %}
{% if slotHasContent('top1') %}
{{ slot('top1') }}
{% endif %} {% if slotHasContent('top2') %}
{{ slot('top2') }}
{% endif %} {% if slotHasContent('top3') %}
{{ slot('top3') }}
{% endif %}
{% endif %} {% if slotHasContent(['right3', 'right2', 'right1', 'main', 'left3', 'left2', 'left1']) %}
{% if slotHasContent(['left3', 'left2', 'left1']) %}
{% if slotHasContent('left1') %}
{{ slot('left1') }}
{% endif %} {% if slotHasContent('left2') %}
{{ slot('left2') }}
{% endif %} {% if slotHasContent('left3') %}
{{ slot('left3') }}
{% endif %}
{% endif %} {% if slotHasContent('main') %}
{{ slot('main') }}
{% endif %} {% if slotHasContent(['right3', 'right2', 'right1']) %}
{% if slotHasContent('right1') %}
{{ slot('right1') }}
{% endif %} {% if slotHasContent('right2') %}
{{ slot('right2') }}
{% endif %} {% if slotHasContent('right3') %}
{{ slot('right3') }}
{% endif %}
{% endif %}
{% endif %} {% if slotHasContent(['bottom1', 'bottom2', 'bottom3']) %}
{% if slotHasContent('bottom1') %}
{{ slot('bottom1') }}
{% endif %} {% if slotHasContent('bottom2') %}
{{ slot('bottom2') }}
{% endif %} {% if slotHasContent('bottom3') %}
{{ slot('bottom3') }}
{% endif %}
{% endif %} {% if slotHasContent('footer') %}
{{ slot('footer') }}
{% endif %}
{% endblock %}