31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
==
|
||
<!-- 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 ===================== --> |