templates/website/page/hertiage-products.html.twig line 1
{% extends '@web/base.html.twig' %}{% block body %}<section class="main-products-section"><div class="container-fluid"><div class="row"><div class="col-lg-10 m-auto"><h2 class="main-title">{{ 'Jewelry shop'|trans }}</h2><div class="wrapper-products">{% for item in products %}<div class="wrapper-item"><div class="wrapper-image"><img src="{{ item.image }}" alt=""></div><div class="wrapper-description"><a class="title" href="{{ path('page_heritage_product_view',{'id':item.id}) }}">{{ item.title }}</a><a class="plain-text" href="{{ path('page_heritage_product_view',{'id':item.id}) }}">{{ item.collection.description|striptags|slice(0, 100) ~ (item.collection.description|striptags|length > 100 ? '…' : '') }}</a><h4>{{ item.price|number_format ~ ' դրամ' }}</h4><a class="read-btn main-shop-btn" href="{{ path('page_heritage_product_view',{'id':item.id}) }}">{{ 'Read more'|trans }}</a></div></div>{% endfor %}</div></div></div></div></section>{% endblock %}