templates/website/page/gallery.html.twig line 1

  1. {% extends '@web/base.html.twig' %}
  2. {% block body %}
  3.         <section class="section-gallery">
  4.             <div class="custom-container">
  5.                 <div class="wrapper-navigation">
  6.                     <h1>
  7.                         {{ 'Gallery'|trans }}
  8.                     </h1>
  9.                     <ul>
  10.                         <li>
  11.                             <a href="{{ path('page_index') }}">
  12.                                 {{ 'Home'|trans }}
  13.                             </a>
  14.                         </li>
  15.                         <li>
  16.                         <span>
  17.                             {{ 'Gallery'|trans }}
  18.                         </span>
  19.                         </li>
  20.                     </ul>
  21.                 </div>
  22.                 <div class="wrapper-items">
  23.                     {% for item in gallery %}
  24.                         <div class="wrapper-item">
  25.                             <img style="width: 100%" src="/user_uploads/{{ item.image }}" alt="">
  26.                         </div>
  27.                     {% endfor %}
  28.                 </div>
  29.             </div>
  30.         </section>
  31. {% endblock %}