src/Frontend/Themes/Web/Core/Layout/Templates/Footer.html.twig line 1

Open in your IDE?
  1. {% import 'Core/Layout/Templates/Macro/Replace.html.twig' as txt %}
  2. {% import 'Core/Layout/Templates/Macro/Wave.html.twig' as wave %}
  3. <footer class="pt-16 mt-auto relative overflow-hidden z-10" role="contentinfo" id="end">
  4.     {{ wave.wave('top','top-0','fill-blue-dark') }}
  5.     {{ wave.line('top-0','fill-transparent stroke-red') }}
  6.     <div class="bg-blue-dark text-white pb-6 xl:pb-12 pt-8 xl:pt-24 [&_a]:text-white [&_a]:no-underline [&_a:active]:text-red [&_a:active]:underline [&_a:active]:decoration-1 [&_a:active]:underline-offset-2 [&_a:focus]:text-red [&_a:focus]:underline [&_a:focus]:decoration-1 [&_a:focus]:underline-offset-2 [&_a:hover]:text-red [&_a:hover]:underline [&_a:hover]:decoration-1 [&_a:hover]:underline-offset-2">
  7.         <div class="center">
  8.             <div class="flex justify-center xl:justify-between flex-wrap items-center xl:items-stretch pb-7 xl:pb-16 border-b border-gray text-center xl:text-left">
  9.                 <div class="mb-8 w-full xl:mb-0 xl:order-4 xl:w-2/12">
  10.                     <a href="#{{ webName }}" aria-label="{{ siteTitle }}" class="group inline-block align-top no-underline">
  11.                         <img src="{{ THEME_URL }}/Core/Layout/assets/img/tomil-white.svg" alt="{{ siteTitle }}" loading="lazy" class="block mb-3" height="33" width="183">
  12.                     </a>
  13.                 </div>
  14.                 <nav class="w-1/2 mb-8 xl:mb-0 text-xl sm:text-2xl xl:text-3xl xl:w-4/12 [&_li+li]:mt-2 [&_a]:inline-block [&_a]:leading-loose [&_svg]:hidden">
  15.                     <ul>{{ getnavigation('page', 0, 1) }}</ul>
  16.                 </nav>
  17.                 <nav class="w-1/2 mb-8 sm:text-xl xl:mb-0 xl:w-2/12 [&_li+li]:mt-2 [&_a]:inline-block [&_a]:leading-loose">
  18.                     {% for footerBrands in positions.footerBrands %}{% if footerBrands.html %}{{ txt.replace(footerBrands.html) }}{% endif %}{% endfor %}
  19.                 </nav>
  20.                 <div class="w-full xl:w-2/12">
  21.                     <div class="border-b border-gray pb-7 mb-6 xl:mb-11 flex justify-center xl:justify-start">{% for footerSocial in positions.footerSocial %}{% if footerSocial.html %}{{ txt.replace(footerSocial.html) }}{% endif %}{% endfor %}</div>
  22.                     <div class="[&_a]:text-gray-manatee [&_li+li]:mt-3">{% for footerLinks in positions.footerLinks %}{% if footerLinks.html %}{{ txt.replace(footerLinks.html) }}{% endif %}{% endfor %}</div>
  23.                 </div>
  24.             </div>
  25.             <div class="text-center xl:text-left xl:flex xl:justify-between xl:items-center text-sm text-gray-manatee pt-8 xl:pt-12 [&_p]:mb-0">
  26.                 <div>{% for footerCopy in positions.footerCopy %}{% if footerCopy.html %}{{ txt.replace(footerCopy.html) }}{% endif %}{% endfor %}</div>
  27.                 <div class="flex items-center gap-2 justify-center xl:justify-start mt-3 xl:mt-0">
  28.                     {% for footerCreator in positions.footerCreator %}{% if footerCreator.html %}{{ txt.replace(footerCreator.html) }}{% endif %}{% endfor %}
  29.                     <a href="https://www.pixeldesign.cz/" target="_blank" class="group">
  30.                         <img src="{{ THEME_URL }}/Core/Layout/assets/img/logo-pixel.svg" alt="Pixel Design s.r.o." loading="lazy" class="transition-all ease-in-out duration-300 group-active:scale-125 group-focus:scale-125 group-hover:scale-125" height="25" width="19">
  31.                     </a>
  32.                 </div>
  33.             </div>
  34.         </div>
  35.     </div>
  36. </footer>