Berkarar/themes/berkarar/partials/home/shops.htm

31 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<section class="rest">
<div class="auto_container">
<div class="rest_wrap">
<div class="rest_tabs">
<h4 class="rest_tabs-link active tabBtn" data-tab="#rest-all">
ВСЕ
</h4>
{% for category in shop_categories %}
<h4 class="rest_tabs-link tabBtn"
data-tab="#cat-{{category.id}}">
{{category.name}}
</h4>
{% endfor %}
</div>
<div class="rest_block tabItem active" id="rest-all">
{% for shop in shop_all%}
{% partial 'home/shop_item' shop=shop %}
{% endfor%}
</div>
{% for category in shop_categories %}
<div class="rest_block tabItem" id="cat-{{category.id}}">
{% for shop in category.getShops() %}
{% partial 'home/shop_item' shop=shop %}
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</section>