templates/commun/_lien_fonctionnalite.html.twig line 1

Open in your IDE?
  1. {# utilisé par : index.html.twig #}
  2. {% if onglet is defined and onglet %}
  3.     {% set target='target="_blank"' %}
  4. {% else %}
  5.     {% set target='' %}
  6. {% endif %}
  7. <div class="{{ bigtile is defined and bigtile ?'col-sm-6':'col-sm-4'}} p-0 m-0 mb-1 mb-sm-0 p-sm-1 p-md-2 px-lg-3">
  8.     <a href="{%if route %}{{ path(route) }}{% else %}#{% endif %}" class="tile {{ color }}" {{ target | raw }}>
  9.         <h3 class="title"><i class="fa fa-1x {{ icone }} fa-fw"></i> {{ libelle }}</h3>
  10.         <p>{{ desc | raw }}</p>
  11.     </a>
  12. </div>