{% set bodyClass = 'bg-white' %} {% set mainClass = 'wrapper' %} {% extends 'layout.twig' %} {% block content %}

{% if category %} {{ category.name }} {% else %} {{ function('pll_e', 'Продукция') }} {% endif %}

{% if active_filters|length > 0 %}
{% if active_filters is not empty %}
{% for filter in active_filters %} {{ filter.name }} × {% endfor %}
{% endif %}
{% endif %}
{% if posts|length > 0 %} {% for post in posts %} {% include 'woocommerce/product-card.twig' with {item : post, addClass: 'product-archive-card'} %} {% endfor %} {% else %}
{{ fn('pll_e', 'coming soon') }}
{{ fn('pll_e', 'This item is not on our website yet, but it will be here very soon') }}
{% endif %}
{% endblock %}