templates/pages/subpage_variance_3.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block content %}
  3. <main id="main" class="main-shifted-right">
  4. {% for block in content.blocks %}
  5. {% include 'partials/' ~ block.type ~ '.html.twig' with {
  6. content: block,
  7. view: view.blocks[loop.index0],
  8. } %}
  9. {% endfor %}
  10. {% if content.participant_block is defined %}
  11. {% include '/partials/participantBlock.html.twig' with {
  12. content: content.participant_block,
  13. }%}
  14. {% endif %}
  15. {% for block in content.blocks2 %}
  16. {% include 'partials/' ~ block.type ~ '.html.twig' with {
  17. content: block,
  18. view: view.blocks2[loop.index0],
  19. } %}
  20. {% endfor %}
  21. {% if content.lecturer_block is defined %}
  22. {% include '/partials/lecturerBlock.html.twig' with {
  23. content: content.lecturer_block,
  24. }%}
  25. {% endif %}
  26. {% if content.team_block is defined %}
  27. {% include '/partials/teamBlock.html.twig' with {
  28. content: content.team_block,
  29. }%}
  30. {% endif %}
  31. </main>
  32. {% endblock %}