templates/_general_includes/_fildariane.html.twig line 1

Open in your IDE?
  1. <section id="page-title" class="page-title-mini" style="margin-top: -75px;">
  2.     <div class="container clearfix">
  3.         {#
  4.         <h1>
  5.             {% if route_name != "apropos" %}
  6.             {{ page ? page.designation : '' }}
  7.             {% else %}
  8.             {{ page }}
  9.             {% endif %}
  10.         </h1>
  11.         #}
  12.         <span>...</span>
  13.         <ol class="breadcrumb">
  14.             <li class="breadcrumb-item"><a href="{{ path('home') }}">{% trans %}Accueil{% endtrans %}</a></li>
  15.             {#
  16.             <li class="breadcrumb-item"><a href="#">Pages</a></li>
  17.             #}
  18.             <li class="breadcrumb-item active" aria-current="page">
  19.                 {% if route_name != "apropos" %}
  20.                     {{ page ? page.designation : '' }}
  21.                 {% else %}
  22.                     {{ page }}
  23.                 {% endif %}</li>
  24.         </ol>
  25.     </div>
  26. </section>