{% block menu_mobile %}
<div id="menu-mobile" uk-offcanvas="flip: true; overlay: true">
<div class="uk-offcanvas-bar apk-offcanvas-mobile">
<button class="uk-offcanvas-close" type="button" uk-close></button>
<div class="uk-text-center uk-margin-top">
<a href="/{{ app.request.locale }}" title="{{ "website.name"|trans }}">
<div class="apk-logo">
<img width="200" height="100" src="{{ document.getProperty('headerLogo').getThumbnail('header-logo') }}" alt="{{ "website.name"|trans }}">
</div>
</a>
</div>
<div class="uk-margin-medium-top uk-flex uk-flex-center">
{{ get_language_switcher_html(document, 'inline', 'code')|raw }}
</div>
<div class="uk-margin-top">
{% include "includes/main-nav-sidebar.html.twig" %}
</div>
{% if document.property('facebookUrl') or document.property('twitterUrl') or document.property('instagramUrl') or document.property('youtubeUrl') %}
<div class="apk-socials uk-margin-top">
<ul class="apk-list-inline">
{% if document.property('facebookUrl') %}
<li>
<a href="{{ document.property('facebookUrl') }}" target="_blank">
<img uk-svg width="30" height="30" src="/static/img/pictos/facebook-circle.svg" alt="Facebook">
</a>
</li>
{% endif %}
{% if document.property('instagramUrl') %}
<li>
<a href="{{ document.property('instagramUrl') }}" target="_blank">
<img uk-svg width="30" height="30" src="/static/img/pictos/instagram-circle.svg" alt="Instagram">
</a>
</li>
{% endif %}
</ul>
</div>
{% endif %}
</div>
</div>
{% endblock %}