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

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% trans_default_domain 'PartenairePage' %}
  3. {% block title %}{{ page.title }}{% endblock %}
  4. {% block stylesheets %}
  5.     {{ parent() }}
  6.     {{ encore_entry_link_tags('pages') }}
  7. {% endblock %}
  8. {% block body %}
  9.     <div id="breadcrumbToPlace" class="container">
  10.         <div class="links">
  11.             <a href="{{ path('app_homepage') }}"><i class="fa-solid fa-house"></i></a>
  12.             <span> / </span>
  13.             <a href="#">L'association</a>
  14.             <span> / </span>
  15.             <span class="active">
  16.                 partenaires
  17.             </span>
  18.         </div>
  19.         <div class="title">
  20.             <h1 class="titleTraitLeft">{{ page.title }}</h1>
  21.         </div>
  22.     </div>
  23.     <div id="content" class="container">
  24.         {% include "commons/sections.html.twig" with {'sections':page.sections} %}
  25.         {% include "commons/sidebar.html.twig" with {'page':page} %}
  26.     </div>
  27.     {% if page.quote %}
  28.         <div class="citation container">
  29.             <img src="{{ asset('/images/YEUX_CHOUETTE.png') }}" alt="yeux de chouette">
  30.             <p>{{ page.quote }}</p>
  31.         </div>
  32.     {% endif %}
  33. {% endblock %}
  34. {% block javascripts %}
  35.     {{ parent() }}
  36.     {{ encore_entry_script_tags('pages') }}
  37. {% endblock %}