templates/common/thumbnail_josip.html.twig line 1

Open in your IDE?
  1. {% set hasAction = (action is defined) %}
  2. <!-- Thumbnail Josip-->
  3. <figure class="thumbnail-josip {% if index % 2 == 1 %} odd {% endif %} {% if not hasAction %} no-animation {% endif %}">
  4.     <a href="{{ linkUrl }}"><img width="270" height="270" src="{{ imageUrl }}" alt="{{ title }}"/></a>
  5.     <div class="thumbnail-desc">
  6.         <h5 class="thumbnail-josip-title text-medium text-white">{{ title }}</h5>
  7.         {% if desc is defined %}<p class="font-italic text-white offset-top-0">{{ desc }}</p>{% endif %}
  8.     </div>
  9.     {% if hasAction %}
  10.         <figcaption>
  11.             <a class="btn btn-block btn-rect text-center btn-white" href="{{ linkUrl }}">{{ action }}</a>
  12.         </figcaption>
  13.     {% endif %}
  14. </figure>