base.html.twig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <<<<<<< ours
  5. <meta charset="UTF-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>{% block title %}Videothèque{% endblock %}</title>
  8. {{ encore_entry_link_tags('app') }}
  9. {% block stylesheets %}{% endblock %}
  10. <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
  11. </head>
  12. <body>
  13. <div class="container">
  14. <header>
  15. {% include 'flashbag.html.twig' %}
  16. {% include 'navbar.html.twig' %}
  17. {% include 'modal.html.twig' %}
  18. <nav class="navbar">
  19. <div class="nav-item">
  20. <h1>{% block titre %}{% endblock %}</h1>
  21. </div>
  22. </nav>
  23. </header>
  24. <main role="main">
  25. {% block body %}{% endblock %}
  26. </main>
  27. <footer class="footer">
  28. {% include 'footer.html.twig' %}
  29. </footer>
  30. </div>
  31. {{ encore_entry_script_tags('app') }}
  32. {% block javascripts %}{% endblock %}
  33. =======
  34. <meta charset="UTF-8">
  35. <title>{% block title %}Welcome!{% endblock %}</title>
  36. <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></svg>">
  37. {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  38. {% block stylesheets %}
  39. {{ encore_entry_link_tags('app') }}
  40. {% endblock %}
  41. {% block javascripts %}
  42. {{ encore_entry_script_tags('app') }}
  43. {% endblock %}
  44. </head>
  45. <body>
  46. {% block body %}{% endblock %}
  47. >>>>>>> theirs
  48. </body>
  49. </html>