templates/includes/nav.html.twig line 1

Open in your IDE?
  1. <nav>
  2.     <h2 class="logo">Namless<span>.hu</span></h2>
  3.     {% if app.user %}
  4.         <button type="button" ><a href="{{ path('download_page') }}" style="color: white">Letöltés</a></button> 
  5.         <button type="button" ><a href="{{ path('logout') }}" style="color: white">Kilépés</a></button> 
  6.     {% else %}
  7.         <button type="button" ><a href="{{ path('login') }}" style="color: white">Belépés</a></button> 
  8.     {% endif %}
  9. </nav>