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

31 lines
1.0 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.

==
<!-- Restaurant ========================= -->
<section class="rest">
<div class="auto_container">
<div class="rest_wrap">
<div class="rest_tabs">
<h4 class="rest_tabs-link active tabLink" data-tab="#rest-all">
{{'ВСЕ'|_}}
</h4>
{% for category in shop_categories %}
<h4 class="rest_tabs-link tabLink"
data-tab="#category-{{category.id}}">
{{category.name}}
</h4>
{% endfor %}
</div>
<div class="rest_block tabInfo active" id="rest-all">
{% partial 'home/shop_item' shops=shops %}
</div>
{% for category in shop_categories %}
<div class="rest_block tabInfo" id="category-{{category.id}}">
{% partial 'home/shop_item' shops=shops %}
</div>
{% endfor %}
</div>
</div>
</section>
<!-- Restaurant end ===================== -->