templates/front/includes/portfolio.html.twig line 1

Open in your IDE?
  1. {% if medias is not empty %}
  2.     <section class="latest-portfolio-area">
  3.         <div class="container">
  4.             <div class="sec-title text-center">
  5.                 <div class="big-title">
  6.                     <h2>{{ 'app.gallery.title'|trans }}</h2>
  7.                 </div>
  8.                 <div class="border-box">
  9.                     <span class="linetop"></span>
  10.                     <span class="linebottom"></span>
  11.                 </div>
  12.             </div>
  13.             <div class="row masonary-layout">
  14.                 {% for media in medias %}
  15.                     {% if media.image is not empty or media.video is not empty %}
  16.                         {% include 'front/gallery/media.html.twig' with {'media': media} %}
  17.                     {% endif %}
  18.                 {% endfor %}
  19.             </div>
  20.             <div class="row">
  21.                 <div class="col-xl-12">
  22.                     <div class="all-portfolio-button text-center">
  23.                         <a class="btn-one" href="{{ path('front_gallery_index') }}">
  24.                             <span class="txt">{{ 'app.gallery.view_more'|trans }}</span>
  25.                         </a>
  26.                     </div>
  27.                 </div>
  28.             </div>
  29.         </div>
  30.     </section>
  31. {% endif %}