templates/website/page/hertiage-products.html.twig line 1

  1. {% extends '@web/base.html.twig' %}
  2. {% block body %}
  3.     <section class="main-products-section">
  4.         <div class="container-fluid">
  5.             <div class="row">
  6.                 <div class="col-lg-10 m-auto">
  7.                     <h2 class="main-title">
  8.                         {{ 'Jewelry shop'|trans }}
  9.                     </h2>
  10.                     <div class="wrapper-products">
  11.                         {% for item in products %}
  12.                         <div class="wrapper-item">
  13.                             <div class="wrapper-image">
  14.                                 <img src="{{ item.image }}" alt="">
  15.                             </div>
  16.                             <div class="wrapper-description">
  17.                                 <a class="title" href="{{ path('page_heritage_product_view',{'id':item.id}) }}">
  18.                                     {{ item.title }}
  19.                                 </a>
  20.                                 <a class="plain-text" href="{{ path('page_heritage_product_view',{'id':item.id}) }}">
  21.                                     {{ item.collection.description|striptags|slice(0, 100) ~ (item.collection.description|striptags|length > 100 ? '…' : '') }}
  22.                                 </a>
  23.                                 <h4>
  24.                                     {{ item.price|number_format ~ ' դրամ' }}
  25.                                 </h4>
  26.                                 <a class="read-btn main-shop-btn" href="{{ path('page_heritage_product_view',{'id':item.id}) }}">
  27.                                     {{ 'Read more'|trans }}
  28.                                 </a>
  29.                             </div>
  30.                         </div>
  31.                         {% endfor %}
  32.                     </div>
  33.                 </div>
  34.             </div>
  35.         </div>
  36.     </section>
  37. {% endblock %}