<header class="main-header header-style-one">
<div class="mobile-header">
<div class="mobile-header-appointement">
<a class="btn btn-appointement side-nav-toggler nav-toggler hidden-bar-opener" href="#">
{{ 'app.menu.appointment'|trans }}
</a>
</div>
{% set activeTheme = app.session.get('theme', 'horse') %}
<nav class="main-menu">
<ul class="navigation navigation-right clearfix">
{# <li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="padding: 17px 0;">
<div style="display: inline-block; background-color: orange; border-radius: 50%; width: 45px;">
<img src="{{ asset('front/assets/images/icon/' ~ activeTheme ~ '.png') }}" style="padding: 5px;">
</div>
</a>
{% set themes = ['horse', 'camel', 'quad'] %}
<ul>
{% for theme in themes %}
{% if theme != activeTheme %}
<li>
<a href="{{ path('change_theme', {'theme': theme}) }}">
<img src="{{ asset('front/assets/images/icon/' ~ theme ~ '.png') }}" alt="{{ theme }}" width="30px">
{{ ('app.theme.' ~ theme)|trans }}
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</li> #}
<li class="dropdown right">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" style="padding: 23px 0;">
<img src="{{ asset(flag_images_directory ~ app.request.locale[-2:] ~ '.png') }}" width="40px">
</a>
{% include 'front/includes/header_languages.html.twig' with { 'route_name': route_name, 'route_parameters': route_parameters } %}
</li>
</ul>
</nav>
</div>
<!--Start header lawer -->
<div class="header-lawer">
<div class="container clearfix">
<div class="outer-box clearfix">
<!--Top Left-->
<div class="header-lawer-left float-left clearfix">
<div class="logo">
<a href="{{ path('front_homepage') }}"><img src="{{ asset('front/assets/images/resources/logo.png') }}" alt="Awesome Logo" title="" style="max-width: 200px;"></a>
</div>
<div class="nav-outer clearfix">
<!--Mobile Navigation Toggler-->
<div class="mobile-nav-toggler">
<div class="inner">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</div>
</div>
<!-- Main Menu -->
{% include 'front/includes/main_menu.html.twig' with { 'route_name': route_name, 'route_parameters': route_parameters } %}
<!-- Main Menu End-->
</div>
</div>
<!--Top Right-->
<div class="header-lawer-right clearfix float-right">
<div class="hidden-content-button" style="padding: 21px 10px 21px">
<a class="btn btn-appointement side-nav-toggler nav-toggler hidden-bar-opener" href="#">
{{ 'app.menu.appointment'|trans }}
</a>
</div>
{% include 'front/includes/main_menu_right.html.twig' with { 'route_name': route_name, 'route_parameters': route_parameters } %}
</div>
</div>
</div>
</div>
<!--End header lawer -->
<!--Sticky Header-->
{% include 'front/includes/sticky_header.html.twig' %}
<!--End Sticky Header-->
<!-- Mobile Menu -->
{% include 'front/includes/mobile_menu.html.twig' %}
<!-- End Mobile Menu -->
</header>