templates/page/work_abroad_items.html.twig line 1

Open in your IDE?
  1.             
  2.             {% for content in collection %}
  3.             <div class="col-lg-4 col-md-6 col-sm-12 news-block">
  4.                 <div class="news-block-one work-abroad-item wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms" style="visibility: visible; animation-duration: 1500ms; animation-delay: 0ms; animation-name: fadeInUp;">
  5.                     <div class="inner-box">
  6.                         <figure class="image-box">
  7.                             <a href="{{ path(content.getRouteName()) }}">
  8.                             <img src="{{ content.thumbnail|imagine_filter('thumbnail_large') }}" alt="{{ content.title }}"></a>
  9.                         </figure>
  10.                         <div class="lower-content">
  11.                             <h3><a href="{{ path(content.getRouteName()) }}">{{ content.title }}</a></h3>
  12.                             <p>{{ content.summary|u.truncate(150)}}</p>
  13.                             <div class="link-btn">
  14.                                 <a href="{{ path(content.getRouteName()) }}"><span>Read More</span></a>
  15.                             </div>
  16.                         </div>
  17.                     </div>
  18.                 </div>
  19.             </div>
  20.             {% endfor %}