<div class="navigation">
<ul>
<li><a {% if page == "index" %}class="active" {% endif %}href="{{path('app_front_main_index')}}">{{ 'nav.home' | trans}}</a></li>
<li><a {% if page == "about" %}class="active" {% endif %}href="{{ path('app_front_main_about') }}">{{ 'nav.aboutUs' | trans}}</a></li>
<li><a {% if page == "masjid" %}class="active" {% endif %}href="{{ path('masjid_index') }}">{{ 'nav.masjid' | trans}}</a></li>
<li><a {% if page == "contact" %}class="active" {% endif %}href="{{ path('app_main_contact') }}">{{ 'nav.contact' | trans}}</a></li>
{% if app.user %}
{% if is_granted('ROLE_ADMIN') %}
<li><a {% if page == "admin" %}class="active" {% endif %}href="{{ path('app_admin_main_index') }}">{{ 'Admin' |trans}}</a></li>
{% endif %}
{% else %}
<li><a {% if page == "admin" %}class="active" {% endif %}href="{{ path('app_login') }}">{{ 'Sign In' |trans}}</a></li>
{% endif %}
<li><button type="button" class="btn btn-nearest" id="nearest" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Nearest Masjid</button></li>
</ul>
<!--DL Menu Start-->
<div id="kode-responsive-navigation" class="dl-menuwrapper">
<a type="button" class="btn btn-nearest" id="nearest" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Nearest Masjid</a>
<button class="dl-trigger">{{ 'nav.OpenMenu' | trans}}</button>
<ul class="dl-menu">
<li><a {% if page == "index" %}class="active" {% endif %}href="{{path('app_front_main_index')}}">{{ 'nav.home' | trans}}</a></li>
<li><a {% if page == "about" %}class="active" {% endif %}href="{{ path('app_front_main_about') }}">{{ 'nav.aboutUs' | trans}}</a></li>
<li><a {% if page == "masjid" %}class="active" {% endif %}href="{{ path('masjid_index') }}">{{ 'nav.masjid' | trans}}</a></li>
<li><a {% if page == "contact" %}class="active" {% endif %}href="{{ path('app_main_contact') }}">{{ 'nav.contact' | trans}}</a></li>
{% if app.user %}
{% if is_granted('ROLE_ADMIN') %}
<li><a {% if page == "admin" %}class="active" {% endif %}href="{{ path('app_admin_main_index') }}">{{ 'Admin' |trans}}</a></li>
{% endif %}
{% else %}
<li><a {% if page == "admin" %}class="active" {% endif %}href="{{ path('app_login') }}">{{ 'Sign In' |trans}}</a></li>
{% endif %}
</ul>
</div>
<!--DL Menu END-->
</div>