templates/blocks/previews-from-controller/preview-territoire-experience-logic.html.twig line 1

Open in your IDE?
  1. <div class="preview-container br8 {{ type }} dflex fdc{% if i == 0 %} first-preview{% endif %}{% if i == 1 %} second-preview{% endif %}">
  2.     <div class="preview-header">
  3.         {% if img is defined and img is not empty %}
  4.             {% include "blocks/previews/img/image.html.twig" %}
  5.         {% else %}
  6.             {% include "blocks/previews/img/default-image.html.twig" %}
  7.         {% endif %}
  8.         <p class="fs14 lh20 dflex aic">
  9.             {% if type == "fiches_territoires" %}
  10.                 Territoire
  11.             {% elseif type == "experiences" %}
  12.                 ExpĆ©riences
  13.             {% endif %}
  14.         </p>
  15.         {% if i == 0 %}
  16.             {% include "blocks/previews-from-controller/blocks/categories.html.twig" %}
  17.         {% endif %}
  18.     </div>
  19.     <div class="preview-content{% if type != " articles" %} dflex fdc{% endif %}">
  20.         {% if i == 1 or i > 1 %}
  21.             {% include "blocks/previews-from-controller/blocks/categories.html.twig" %}
  22.         {% endif %}
  23.         <a href="{{ url }}" class="cblue nodeco {{ title_lines }} ">
  24.             <div class="fw500 fs20 preview-h3 {{ title_lines }} lh28 mt-8px">{{ title }}</div>
  25.         </a>
  26.         {% if departement is defined and departement is not empty %}
  27.             <div class="departement cwhite fs10">
  28.                 <span class="dpt">{{ departement }}</span>
  29.             </div>
  30.         {% endif %}
  31.     </div>
  32.     {% if type == "experiences" %}
  33.         <div class="mta">
  34.             <span class="cgrey fs14 lh20">
  35.                 {% if authored is defined and authored is not empty %}
  36.                     PubliĆ© le
  37.                     {{ authored|format_datetime('short', 'none', locale='fr') }}
  38.                 {% endif %}
  39.             </span>
  40.         </div>
  41.     {% endif %}
  42. </div>