templates/pages/subpage_variance_5.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.press_block is defined %}
  11. {% include '/partials/pressBlock.html.twig' with {
  12. content: content.press_block,
  13. }%}
  14. {% endif %}
  15. </main>
  16. {% endblock %}