templates/header.html.twig line 1

Open in your IDE?
  1. <div class="header header-light">
  2.     <div class="container">
  3.         <nav id="navigation" class="navigation navigation-landscape">
  4.             <div class="nav-header">
  5.                 <a class="nav-brand" href="{{path('index')}}">
  6.                     <img src="/img/logo.png" class="logo" alt="">
  7.                 </a>
  8.                 <div class="nav-toggle"></div>
  9.             </div>
  10.             <div class="nav-menus-wrapper" style="transition-property: none;"><span class="nav-menus-wrapper-close-button">✕</span>
  11.                 <ul class="nav-menu">
  12.                     <li {% if app.request.attributes.get( '_route' ) starts with 'index' %} class="active"{% endif %}><a href="{{path('index')}}">Domovská stránka</a></li>
  13.                     <li {% if app.request.attributes.get( '_route' ) starts with 'vysetreni' %} class="active"{% endif %}><a href="{{path('vysetreni')}}">Vyšetření</a></li>
  14.                     <li {% if app.request.attributes.get( '_route' ) starts with 'nemoci' %} class="active"{% endif %}><a href="{{path('nemoci')}}">Nemoci</a></li>
  15.                     <li {% if app.request.attributes.get( '_route' ) starts with 'prvni_pomoc' %} class="active"{% endif %}><a href="{{path('prvni_pomoc')}}">První pomoc</a></li>
  16.                     <li {% if app.request.attributes.get( '_route' ) starts with 'zdravi' %} class="active"{% endif %}><a href="{{path('zdravi')}}">Zdraví</a></li>
  17.                     <li {% if app.request.attributes.get( '_route' ) starts with 'pojistovny' %} class="active"{% endif %}><a href="{{path('pojistovny')}}">Pojišťovny</a></li>
  18.                 </ul>
  19.                 <!--<ul class="nav-menu nav-menu-social align-to-right">
  20.                     <div class="input-group mt-2">
  21.                         <input type="text" class="form-control" placeholder="Co vás zajímá?">
  22.                         <div class="input-group-append">
  23.                             <button class="btn btn-outline-secondary" type="button"><i class="fas fa-search"></i></button>
  24.                         </div>
  25.                     </div>
  26.                 </ul>-->
  27.             </div>
  28.         </nav>
  29.     </div>
  30. </div>