64 lines
2.5 KiB
Twig
64 lines
2.5 KiB
Twig
{{ header }}
|
|
<div id="information-sitemap" class="container">
|
|
<ul class="breadcrumb">
|
|
{% for breadcrumb in breadcrumbs %}
|
|
<li class="breadcrumb-item"><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
<div class="row">{{ column_left }}
|
|
<div id="content" class="col">{{ content_top }}
|
|
<h1>{{ heading_title }}</h1>
|
|
<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>
|
|
{{ content_bottom }}</div>
|
|
{{ column_right }}</div>
|
|
</div>
|
|
{{ footer }} |