templates/pages/default.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block hero %}
  3. {% if content.cover_hp is defined or content.cover_video_hp is defined %}
  4.         {{ include ('pages/blocks/hero-hp-section.html.twig', {
  5.             content : content
  6.         }) }}
  7. {% endif %}
  8. {% if content.cover is defined %}
  9.         {{ include ('pages/blocks/hero-section.html.twig', {
  10.             content : content
  11.         }) }}
  12. {% endif %}
  13. {% if content.coverVideo is defined %}
  14.         {{ include ('pages/blocks/hero-video-section.html.twig', {
  15.             content : content
  16.         }) }}
  17. {% endif %}
  18. {% endblock %}
  19. {% block content %}
  20.         {% for item in content.blocks %}
  21.             {{ include('pages/blocks/' ~ item.type ~ '.html.twig', {
  22.                 content : item,
  23.                 index : loop.index,
  24.                 global : content
  25.             }) }}
  26.         {% endfor %} 
  27. {% endblock %}