themes/webapicTheme/templates/taxons/taxon_referencement_block.html.twig line 1

Open in your IDE?
  1. {# RĂ©fĂ©rencement SEO - Textes et liens en bas de page #}
  2. {% if taxon.referencement is not empty or referencementllinks is not empty %}
  3.     <div class="categorie-referencement">
  4.         <div class="categorie-referencement-ctn">
  5.             {% if referencementllinks is not empty %}
  6.                 <h3>{{ 'app.front.block.referencement'|trans }}</h3>
  7.                 <ul>
  8.                     {% for link in referencementllinks %}
  9.                         <li>
  10.                             <a href="/{{ link.slug }}">{{ link.name }}</a>
  11.                         </li>
  12.                     {% endfor %}
  13.                 </ul>
  14.             {% endif %}
  15.             {% if app.request.locale == 'en_US' and taxon.referencementen|length != 0 %}
  16.                 {% if taxon.referencementen|length != 0 %}
  17.                     {# {% if taxon.referencement|length < 50 %} #}
  18.                         {# <div>{{ taxon.referencement | raw }}</div> #}
  19.                     {# {% else %} #}
  20.                         <div>
  21.                             <input type="checkbox" id="expanded-bottom">
  22.                             <div class="voirplus-ctn">{{ taxon.referencementen|raw }}</div>
  23.                             <label for="expanded-bottom" role="button">See more</label>
  24.                         </div>
  25.                     {# {% endif %} #}
  26.                 {% endif %}
  27.             {% else %}
  28.                 {% if taxon.referencement|length != 0 %}
  29.                     {# {% if taxon.referencement|length < 50 %} #}
  30.                         {# <div>{{ taxon.referencement | raw }}</div> #}
  31.                     {# {% else %} #}
  32.                         <div>
  33.                             <input type="checkbox" id="expanded-bottom">
  34.                             <div class="voirplus-ctn">{{ taxon.referencement|raw }}</div>
  35.                             <label for="expanded-bottom" role="button">Voir plus</label>
  36.                         </div>
  37.                     {# {% endif %} #}
  38.                 {% endif %}
  39.             {% endif %}
  40.             
  41.         </div>
  42.     </div>
  43. {% endif %}