templates/_structure/menu-tabs-amateur.html.twig line 1

Open in your IDE?
  1. <nav class="nav nav-tabs d-flex mb-3">
  2.     <a class="flex-fill text-center rounded-0 border-0 bg-grey-10 nav-link frivol-xhr {{ app.request.attributes.get('_route') == 'app_user_amateur_online' ? 'active' : '' }}" href="{{ path('app_user_amateur_online') }}">Online</a>
  3.     <a class="flex-fill text-center rounded-0 border-0 bg-grey-10 nav-link frivol-xhr {{ app.request.attributes.get('_route') == 'app_user_amateur_top' ? 'active' : '' }}" href="{{ path('app_user_amateur_top') }}">
  4.         Top<span class="d-none d-md-inline"> bewertet</span>
  5.     </a>
  6.     <a class="flex-fill text-center rounded-0 border-0 bg-grey-10 nav-link frivol-xhr {{ app.request.attributes.get('_route') == 'app_user_amateur_recent' ? 'active' : '' }}" href="{{ path('app_user_amateur_recent') }}">Neu</a>
  7.     <a class="flex-fill text-center rounded-0 border-0 bg-grey-10 nav-link frivol-xhr {{ app.request.attributes.get('_route') == 'app_user_amateur_geo' ? 'active' : '' }}" href="#">In der Nähe</a>
  8.     <a class="flex-fill text-center rounded-0 border-0 bg-grey-10 nav-link frivol-xhr {{ app.request.attributes.get('_route') == 'app_user_amateur_search' ? 'active' : '' }}" href="{{ path('app_user_amateur_search') }}">Suche</a>
  9. </nav>