{% extends "base.html.twig" %}{% block content %}<main id="main" class="main-shifted-right">{% for block in content.blocks %}{% include 'partials/' ~ block.type ~ '.html.twig' with {content: block,view: view.blocks[loop.index0],} %}{% endfor %}{% if content.participant_block is defined %}{% include '/partials/participantBlock.html.twig' with {content: content.participant_block,}%}{% endif %}{% for block in content.blocks2 %}{% include 'partials/' ~ block.type ~ '.html.twig' with {content: block,view: view.blocks2[loop.index0],} %}{% endfor %}{% if content.lecturer_block is defined %}{% include '/partials/lecturerBlock.html.twig' with {content: content.lecturer_block,}%}{% endif %}{% if content.team_block is defined %}{% include '/partials/teamBlock.html.twig' with {content: content.team_block,}%}{% endif %}</main>{% endblock %}