templates/app/partials/header/top.html.twig line 1

Open in your IDE?
  1. <div class="bg-white h-[62px] bg-white container flex h-[62px] justify-between items-center">
  2.     {% include "app/partials/header/logo.html.twig" %}
  3.     <div class="flex justify-end items-center gap-8 top-navigation--items">
  4.         {% include "app/partials/header/emergency.html.twig" with {showIcon: true} %}
  5.         {% if document.getProperty('workAtPage') %}
  6.             {% set workAtLink = document.getProperty('workAtPage').url %}
  7.             {% set workAtTitle = document.getProperty('workAtPage').getProperty('navigation_name') %}
  8.             {% include "app/partials/header/link.html.twig" with {href: workAtLink, label: workAtTitle, class: 'text-blue-800 hidden 2xl:block'} %}
  9.         {% endif %}
  10.         {% if document.getProperty('contactPage') %}
  11.             {% set contactLink = document.getProperty('contactPage').url %}
  12.             {% set contactTitle = document.getProperty('contactPage').getProperty('navigation_name') %}
  13.             {% include "app/partials/header/link.html.twig" with {href: contactLink, label: contactTitle, class: 'text-blue-800 hidden 2xl:block'} %}
  14.         {% endif %}
  15.         <div class="hidden xl:block">
  16.         {% include 'app/partials/header/search.html.twig' %}
  17.         </div>
  18.         {% include 'app/partials/languageswitch.html.twig' with {'theme': 'header' } %}
  19.     </div>
  20. </div>