templates/blocks/previews-from-controller/blocks/categories.html.twig line 1

Open in your IDE?
  1. {% if categories is defined and categories is not empty and categories|length > 0 %}
  2.     <div class="thematique-container dflex fwwrap mt-8px">
  3.         {% for category in categories %}
  4.             {% if category is defined %}
  5.                 {% if category.key is defined and category.key is not empty and sulu_resolve_category_parent_name(category.key) == "thematiques" %}
  6.                     {% if category.id is defined and category.id is not empty %}
  7.                         {% set id = category.id %}
  8.                     {% else %}
  9.                         {% set id = category %}
  10.                     {% endif %}
  11.                     {% set categoryEntity = load_category_by_id(id, app.request.locale) %}
  12.                     {% if category.name is defined and category.name is not empty %}
  13.                         {% set name = category.name %}
  14.                     {% else %}
  15.                         {% set name = categoryEntity.name %}
  16.                     {% endif %}
  17.                     {% set pageLink = categoryEntity.entity.pageLink %}
  18.                     {% set contentLoad = null %}
  19.                     {% if pageLink %}
  20.                         {% set contentLoad = sulu_content_load(pageLink.href).content %}
  21.                     {% endif %}
  22.                     {% if pageLink is defined and pageLink is not empty and 
  23.                 contentLoad is defined and 
  24.                 contentLoad is not empty %}
  25.                         <a href="{{ contentLoad.url }}" class="nodeco them-link">
  26.                         {% endif %}
  27.                         {% if id is defined and id is not empty %}
  28.                             {% set color = categoryEntity.entity.color %}
  29.                             <div class="thematiques-tag cwhite fw500 dflex aic" {% if color is defined and color is not empty %} style="background: {{ color }}" {% endif %}>
  30.                                 {{ name }}
  31.                             </div>
  32.                         {% endif %}
  33.                         {% if pageLink is defined and pageLink is not empty and 
  34.                     contentLoad is defined and 
  35.                     contentLoad is not empty %}
  36.                         </a>
  37.                     {% endif %}
  38.                 {% endif %}
  39.             {% endif %}
  40.         {% endfor %}
  41.     </div>
  42. {% endif %}