templates/_structure/menu-tabs-video.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_content_video_index' ? 'active' : '' }}" href="{{ path('app_content_video_index') }}">
  3.         <span class="d-md-none">Neu</span>
  4.         <span class="d-none d-md-inline">Neue Videos</span>
  5.     </a>
  6.     <a class="flex-fill text-center rounded-0 border-0 bg-grey-10 nav-link px-1 frivol-xhr {{ app.request.attributes.get('_route') == 'app_content_video_topweek' ? 'active' : '' }}" href="{{ path('app_content_video_topweek') }}">Top der Woche</a>
  7.     <a class="flex-fill text-center rounded-0 border-0 bg-grey-10 nav-link px-1 frivol-xhr {{ app.request.attributes.get('_route') == 'app_content_video_topmonth' ? 'active' : '' }}" href="{{ path('app_content_video_topmonth') }}">Top des Monats</a>
  8.     <a class="flex-fill text-center rounded-0 border-0 bg-grey-10 nav-link px-1 frivol-xhr {{ app.request.attributes.get('_route') == 'app_content_video_categories' ? 'active' : '' }}" href="{{ path('app_content_video_categories') }}">Kategorien</a>
  9.     <a class="flex-fill text-center rounded-0 border-0 bg-grey-10 nav-link px-1 frivol-xhr {{ app.request.attributes.get('_route') == 'app_content_video_search' ? 'active' : '' }}" href="{{ path('app_content_video_search') }}">Videos suchen</a>
  10. </nav>