File: //home/retile.ru/public_html/catalog/view/theme/unishop2/template/information/sitemap.twig
{{ header }}
<div class="container">
<div class="breadcrumb-h1 {{ menu_expanded ? ' col-md-offset-3 col-lg-offset-3 col-xxl-offset-4' }}">
<ul class="breadcrumb mobile">
{% for key, breadcrumb in breadcrumbs %}
{% if key + 1 < breadcrumbs|length %}
<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
{% else %}
{% if not hide_last_breadcrumb or (hide_last_breadcrumb and key == 1) %}<li>{{ breadcrumb.text }}</li>{% endif %}
{% endif %}
{% endfor %}
</ul>
<h1 class="heading">{{ heading_title }}</h1>
</div>
<div class="row">
{{ column_left }}
{% if column_left and column_right %}
{% set class = ' col-sm-4 col-md-6 col-lg-6 col-xxl-12' %}
{% elseif column_left or column_right %}
{% set class = ' col-sm-8 col-md-9 col-lg-9 col-xxl-16' %}
{% else %}
{% set class = ' col-sm-12' %}
{% endif %}
<div id="content" class="{{ class }}">
{{ content_top }}
<div class="uni-wrapper">
<div class="row">
<div class="col-sm-6">
<ul>
{% for category_1 in categories %}
<li><a href="{{ category_1.href }}">{{ category_1.name }}</a>
{% if category_1.children %}
<ul>
{% for category_2 in category_1.children %}
<li><a href="{{ category_2.href }}">{{ category_2.name }}</a>
{% if category_2.children %}
<ul>
{% for category_3 in category_2.children %}
<li><a href="{{ category_3.href }}">{{ category_3.name }}</a></li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
<div class="col-sm-6">
<ul>
<li><a href="{{ special }}">{{ text_special }}</a></li>
<li><a href="{{ account }}">{{ text_account }}</a>
<ul>
<li><a href="{{ edit }}">{{ text_edit }}</a></li>
<li><a href="{{ password }}">{{ text_password }}</a></li>
<li><a href="{{ address }}">{{ text_address }}</a></li>
<li><a href="{{ history }}">{{ text_history }}</a></li>
<li><a href="{{ download }}">{{ text_download }}</a></li>
</ul>
</li>
<li><a href="{{ history }}">{{ text_cart }}</a></li>
<li><a href="{{ checkout }}">{{ text_checkout }}</a></li>
<li><a href="{{ search }}">{{ text_search }}</a></li>
<li>{{ text_information }}
<ul>
{% for information in informations %}
<li><a href="{{ information.href }}">{{ information.title }}</a></li>
{% endfor %}
<li><a href="{{ contact }}">{{ text_contact }}</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
{{ content_bottom }}
</div>
{{ column_right }}
</div>
</div>
{{ footer }}