{% for item in particle.social_items %}
{% set title = (item.social_title is not empty) ? item.social_title|e : item.social_text|e %}
{% set titleAttrib = (title is not empty) ? ' title="' ~ title ~ '" aria-label="' ~ title ~ '"' : '' %}
{% endif %}
{% endif %}
{% endmacro %}
{% import _self as macro %}
{% set url = url(particle.url)|default(gantry.siteUrl()) %}
{% if (url == gantry.siteUrl()) %}{% set rel='rel="home"' %}{% endif %}
{% set logo_init = particle.image or particle.text %}
{% set logo_render %}
{% set class=(particle.class ? 'class="'~ particle.class ~'"') %}
{% set height = particle.height ? 'style="max-height: ' ~ particle.height ~ '"' : particle.image|imagesize %}
{% if particle.image %}
{% else %}
{{ particle.text|raw }}
{% endif %}
{% endset %}
{% set mobile_logo_render %}
{% set class=(particle.class ? 'class="'~ particle.class ~'"') %}
{% set image_height = particle.image_height ? 'style="max-height: ' ~ particle.image_height ~ '"' : particle.mobile_logo_image|imagesize %}
{% if particle.mobile_logo_image %}
{% else %}
{{ particle.text|raw }}
{% endif %}
{% endset %}
{# Header Layout #}
{% set isNavbarpos = particle.search_pos == 'navbar' or (particle.social_pos == 'navbar' and particle.social_items) or (particle.html_pos == 'navbar' and particle.html) or menu.root.count() %}
{% set isHeaderpos = particle.search_pos == 'header' or (particle.social_pos == 'header' and particle.social_items) or (particle.html_pos == 'header' and particle.html) %}
{% if menu.root.count() %}
{% if particle.sticky and particle.section is empty %}
{% endif %}
{% if particle.container_maxwidth %}
{{ particle.container_maxwidth == 'custom' and not particle.navbar_style ? '
' : '' }}
{% endif %}
{% if particle.container_maxwidth %}
{{ particle.container_maxwidth == 'custom' and not particle.navbar_style ? '
' : '' }}
{% endif %}
{% if particle.sticky and particle.section is empty %}
{% endif %}
{% endif %}
{# Mobile Header #}
{% if particle.m_sticky %}
{% endif %}
{% if particle.container_maxwidth %}
{% endif %}
{% if particle.container_maxwidth %}
{% endif %}
{% if particle.menu_animation == 'dropdown' and not particle.g5canvas %}
{% include '@particles/jlnavcanvas.html.twig' ignore missing %}
{% endif %}
{% if particle.m_sticky %}
{% endif %}
{% if particle.menu_animation != 'dropdown' and not particle.g5canvas %}
{% include '@particles/jlnavcanvas.html.twig' ignore missing %}
{% endif %}