templates/Lenord/Main/parts/item-post.html.twig line 1

Open in your IDE?
  1. {% if type_template|default and type_template == 'evasion' %}
  2.   <a href="{{ url }}" class="itemPost --nordEvasion" title="{{ title }}" target="_blank">
  3.     <div class="__img">
  4.       <img src="{{ src_image }}" alt="">
  5.     </div>
  6.     <p class="__title"><span>{{ title }}</span></p>
  7.   </a>
  8. {% elseif type_template|default and type_template == 'services' %}
  9.   <a target='_blank' href="{{ url }}"
  10.      class="itemCardService" title="{{ title }}">
  11.     <p><span class="__text">{{ title }}</span>&nbsp;<span class="__icon-external">{{ source('svg/icons/icon-external.svg') }}</span></p>
  12.   </a>
  13. {% else %}
  14.   <a href="{{ post.url }}" class="itemPost --nordInfo {% if post.type == 4 %}--video{% endif %}" title="{% if post.type == 4 %}VIDEO : {% endif %}{{ post.title }}" target="_blank">
  15.     <div class="__img">
  16.       <img src="{{ post.image }}" alt="">
  17.       {% if post.type == 4 %}
  18.         <span class="__icon-play">
  19.         {{ source('svg/icons/icon-play.svg') }}
  20.       </span>
  21.         <span class="__duration">{{ post.duration }}</span>
  22.       {% endif %}
  23.     </div>
  24.     <p class="__title"><span>{% if post.type == 4 %}VIDEO : {% endif %}{{ post.title }}</span></p>
  25.   </a>
  26. {% endif %}