{% sw_extends '@Storefront/storefront/layout/header/header.html.twig' %}
{% block layout_header %}
{% set headerData = attribute(page.HuebertSeoUltimate.config.conversion.header, context.salesChannel.languageId) is defined ? attribute(page.HuebertSeoUltimate.config.conversion.header, context.salesChannel.languageId) : page.HuebertSeoUltimate.config.conversion.header %}
{% if headerData.active %}
<div class="hueb-seo__header">
<div class="header-center">
{% for key, entry in headerData.iconName %}
{% if entry != "" or headerData.iconId[key] != "" %}
<span class="header-entry">{% if not loop.first %}{{ headerData.iconName[loop.index0] }}{% endif %}
<i class="fa {{ headerData.iconId[key] }}" aria-hidden="true"></i> {{ entry|sw_sanitize }}</span>
{% endif %}
{% endfor %}
</div>
</div>
{% endif %}
{{ parent() }}
{% endblock %}