templates/pages/subpage_variance_1.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.lecturer_block is defined %}
  11. {% include '/partials/lecturerBlock.html.twig' with {
  12. content: content.lecturer_block,
  13. }%}
  14. {% endif %}
  15. {% if content.faq_block is defined %}
  16. {% for faq_block in content.faq_block %}
  17. {% include '/partials/headlineAndTextBodyBlock.html.twig' with {
  18. content: faq_block,
  19. }%}
  20. {% endfor %}
  21. {% endif %}
  22. </main>
  23. {% endblock %}