templates/front/Presentation/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% trans_default_domain 'Presentation' %}
  3. {% block body %}
  4.     {{ parent() }}
  5.     {% include 'components/breadcrumb.html.twig' with {pages: [{label: 'about'}, {route: path('app_presentation_index'), label: 'app_presentation_index'}]} %}
  6.     {% include 'components/intro.html.twig' with {title: 'intro.title'|trans, subTitle: 'intro.subTitle'|trans, description: page.introDescription, icon: 'helm.svg'} %}
  7.     {% for paragraph in page.paragraphs %}
  8.         {% include 'components/paragraph.html.twig' with {paragraph} %}
  9.     {% endfor %}
  10.     {% include 'components/lastBloc.html.twig' with {lastBloc: page} %}
  11. {% endblock %}