Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

35 lines
1001B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>{% block title %}Pietro{% endblock %}</title>
  7. {% block meta %}{% endblock %}
  8. <link rel="icon" type="image/png" href="{{ asset('assets/img/favicon.png') }}"/>
  9. {{ encore_entry_link_tags('app-frontend') }}
  10. {% block stylesheets %}{% endblock %}
  11. </head>
  12. {% set current_path = app.request.get('_route') %}
  13. <body id="{{ current_path }}">
  14. {% for message in app.flashes('success') %}
  15. <div class="alert alert-success">
  16. {{ message }}
  17. </div>
  18. {% endfor %}
  19. {% block header %}
  20. {% include 'frontend/layout/header.html.twig' %}
  21. {% endblock %}
  22. <div id="content">
  23. {% block body %}{% endblock %}
  24. </div>
  25. {% block footer %}
  26. {% include 'frontend/layout/footer.html.twig' %}
  27. {% endblock %}
  28. {{ encore_entry_script_tags('app-frontend') }}
  29. {% block javascripts %}{% endblock %}
  30. {% include '@LcSov/cookie/cookie.html.twig' %}
  31. </body>
  32. </html>