templates/api/blocks/territoire-preview-content.html.twig line 1

Open in your IDE?
  1. {% if articleContent.header_img is defined and articleContent.header_img is not empty %}
  2.   {% set img = articleContent.header_img %}
  3. {% endif %}
  4. <div class="preview-content{% if article.template != 'articles' %}{% endif %}">
  5.   {% include 'blocks/previews-from-controller/blocks/categories.html.twig' %}
  6.   <a href="{{ sulu_content_path(routePath) }}" class="cblue nodeco" target="_blank">
  7.     <div class="fw500 fs20 preview-h3 lh28 mt-8px">
  8.       {% if title is defined and title is not empty %}
  9.         {{ title }}
  10.       {% endif %}
  11.     </div>
  12.   </a>
  13.   <div class="dflex jcsb aic">
  14.     {% if articleContent.departement is defined and articleContent.departement is not empty %}
  15.       <div class="departement cwhite fs12<">
  16.         <span class="dpt">{{ articleContent.departement }}</span>
  17.       </div>
  18.     {% endif %}
  19.     <a href="{{ sulu_content_path(routePath) }}" class="see-more" target="_blank">Voir plus</a>
  20.   </div>
  21. </div>