templates/pages/homepage.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block content %}
  3.     {% include 'elements/home_cover/home_cover.html.twig' with {
  4.         title: content.subtitle,
  5.         image: content.cover,
  6.     } %}
  7.     {% for item in content.blocks %}
  8.         {{ include('pages/blocks/' ~ item.type ~ '.html.twig', {
  9.             content : item,
  10.             index : loop.index|number_format - 1,
  11.             page : view,
  12.             view : content
  13.         }) }}
  14.     {% endfor %}
  15. {% endblock %}