You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
554 B
15 lines
554 B
<div class="header-pc-menu__item">
|
|
{% for item in child_menu.items %}
|
|
<a class="header-pc-menu__title" href="{{ item.link }}" {{ item.is_target_blank ? 'target="_blank"' }}>{{ item.title }}</a>
|
|
{% if item.children %}
|
|
<ul class="header-pc-menu__list">
|
|
{% for child in item.children %}
|
|
<li class="header-pc-menu__list-li">
|
|
<a href="{{ child.link }}"{{ item.is_target_blank ? 'target="_blank"' }}>{{ child.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
|