templates/includes/navigation/layout2_mobile.html.twig line 1
{# <!-- Layout 2 - Mobile --> #}
<div class="mobile-nav__item">
<div class="mobile-nav__item-title" @click="mobileNavContent = 2">
{{ item.title }}
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="m7.5 2.5 10 10-10 10" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
<div class="mobile-nav__item-content" :class="{'mobile-nav__item-content--show': mobileNavContent === 2}">
<div class="mobile-nav__header">
<div class="mobile-nav__close" @click="showMobileNav = false; mobileNavContent = null">
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13.5 2.5L2.5 13.5" stroke="currentColor" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
<path d="M2.5 2.5L13.5 13.5" stroke="currentColor" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
</div>
<div class="mobile-nav__item-content-title" @click="mobileNavContent = null">
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="m17.5 2.5-10 10 10 10" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" />
</svg>
{{ item.title }}
</div>
<div class="flyout-nav-cols">
{# <!-- Children --> #}
<div class="flyout-nav-cols__col">
<div class="flyout-nav-cols__title">{{ flyoutPage['titleColumn1'] }}</div>
<div class="flyout-nav-links flyout-nav-links--big">
{% for child in flyoutPage['children'] %}
<a href="{{ child['url'] }}" class="flyout-nav-links__link">
{{ child['title'] }}
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 26">
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 13 0 0v13h13Z" fill="#FF73F5" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 13v13l13-13H0Z" fill="#FF73F5" />
</svg>
</a>
{% endfor %}
</div>
</div>
{# <!-- Blocks/SubPages --> #}
<div class="flyout-nav-cols__col">
<div class="flyout-nav-cols__title">{{ flyoutPage['titleColumn2'] }}</div>
<div class="flyout-nav-quickstart">
<div class="flyout-nav-quickstart__items">
{# <!-- Blocks 2-1 --> #}
{% for item21 in flyoutPage['urls21'] %}
<a href="{{ item21['url'] }}" class="flyout-nav-quickstart__item">
<span class="flyout-nav-quickstart__title">
{{ item21['title'] }}
</span>
<span class="flyout-nav-quickstart__text">
{{ item21['preview']|raw }}
</span>
</a>
{% endfor %}
</div>
{% if flyoutPage['urlMoreLink'] is defined and flyoutPage['urlMoreLink'] %}
<a href="{{ flyoutPage['urlMoreLink'] }}" class="flyout-nav-quickstart__link">{{ flyoutPage['titleMoreLink'] }}</a>
{% endif %}
</div>
</div>
</div>
</div>
</div>