src/AppBundle/Resources/views/Page/index.html.twig line 1

Open in your IDE?
  1. {% extends 'AppBundle::layout.html.twig' %}
  2. {% block header %}
  3.   {% if page.header %}
  4.     {% include "@App/components/header.html.twig" %}
  5.   {% endif %}
  6. {% endblock %}
  7. {% block title %}{% endblock %}
  8. {% block body %}
  9.   {% block banner %}
  10.     {% if page.banner %}
  11.       {% include '@App/ContentBlock/banner.html.twig' %}
  12.     {% endif %}
  13.   {% endblock %}
  14.   {% if page.isUnitsFilter %}
  15.     {% include '@App/components/units_filter.html.twig' %}
  16.   {% endif %}
  17.   {% if page.breadcrumbs %}
  18.     {% include '@App/components/breadcrumbs.html.twig' %}
  19.   {% endif %}
  20.   {% include '@App/components/flash.html.twig' %}
  21.   {% block content %}{% endblock %}
  22.   {% for content in page.contentBlocks %}
  23.     {{ render_content_block(content.instance, page) }}
  24.   {% endfor %}
  25.   {% if page.isNewsletter %}
  26.     {% include '@App/components/newsletter_box.html.twig' %}
  27.   {% endif %}
  28. {% endblock %}
  29. {% block footer %}
  30.   {% if page.footer %}
  31.     {% include "@App/components/footer.html.twig" %}
  32.   {% endif %}
  33. {% endblock %}