{% set footerpages = build_property_nav(document, 'navigationFooter').pages|filter(page => page.visible) %}
<div class="py-8 bg-white sm:py-5">
<div class="container content-between justify-between px-5 space-y-3 sm:space-y-0 sm:flex sm:flex-col lg:flex-row sm:justify-between max-w-screen-xxl fhd:px-0">
<div class="flex flex-wrap items-center justify-center gap-4 lg:mb-0">
{% set sigel = pimcore_website_config('footer_sigle_icons') %}
{% if sigel and sigel.children is defined %}
{% for sigel in sigel.children %}
{{ sigel
? sigel.thumbnail('race-owner-logo').html({
cacheBuster: true,
pictureAttributes: { class: 'w-36 ' },
imgAttributes: { class: 'w-36 ' }
})|raw }}
{% endfor %}
{% endif %}
</div>
<div class="flex py-8 text-center place-items-center place-content-center">
<p class="text-xs text-neutral-500">{{ pimcore_website_config('footer_disclaimer') }}</p>
</div>
<div class="text-lg text-center">
{{ pimcore_website_config('bar_copyright')|raw }}
</div>
<ul class="flex justify-center space-x-3">
<li class="flex items-center space-x-3">
<a href="/{{app.request.locale}}" class="text-sm">
{{ "footerbar-homepage"|trans }}
</a>
{% if footerpages %}<div class="h-3 border-r"></div>{% endif %}
</li>
{% for page in footerpages %}
<li class="flex items-center space-x-3">
<a class="text-sm {{ page.active ? 'font-bold' : '' }}" href="{{ page.href }}" target="{{ page.target }}">
{{ page.label }}
</a>
{% if not loop.last %}
<div class="h-3 border-r"></div>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
</div>