base.html.twig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="color-scheme" content="light dark">
  8. <title>{% block title %}Welcome!{% endblock %}</title>
  9. <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
  10. {% block stylesheets %}
  11. {{ encore_entry_link_tags('app') }}
  12. {% endblock %}
  13. {% block javascripts %}
  14. {{ encore_entry_script_tags('app') }}
  15. {% endblock %}
  16. </head>
  17. <body>
  18. <header class="container">
  19. <nav>
  20. <ul>
  21. <li><strong>One Movie One Week</strong></li>
  22. </ul>
  23. {% if app.user %}
  24. <ul>
  25. <li><a href="#">Accueil</a></li>
  26. <li><a href="#">Vus</a></li>
  27. <li><a href="#">A propos</a></li>
  28. <li>
  29. <details class="dropdown">
  30. <summary>Profil</summary>
  31. <ul dir="rtl">
  32. <li>{{ app.user.pseudo }}</li>
  33. <li>Profil</li>
  34. <li><a href="{{ path('app_logout') }}">Se déconnecter</a></li>
  35. </ul>
  36. </details>
  37. </li>
  38. </ul>
  39. {% endif %}
  40. </nav>
  41. </header>
  42. <main class="container">
  43. {% block body %}{% endblock %}
  44. </main>
  45. </body>
  46. </html>