templates/articles-blocks/thematiques-from-contact.html.twig line 1

Open in your IDE?
  1. {% if categories|length > 0 %}
  2.     {% for category in categories %}
  3.         {% if category.pageLink.href is defined and category.pageLink.href is not empty %}
  4.             <a href="{{sulu_content_load(category.pageLink.href).content.url}}" class="nodeco">
  5.         {% endif %}
  6.         <div class="thematiques-tag cwhite fw400 dflex aic" data-thematiqueid={{category.id}} style="background: {{load_category_by_id(category.id, 'fr').entity.color}}">
  7.             {{category.translations[0].translation}}
  8.         </div>
  9.         {% if category.pageLink is defined and category.pageLink is not empty %}</a>{% endif %}
  10.     {% endfor %}
  11. {% endif %}