templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
  7.     <title>{% block title %}Waste - Application{% endblock %}</title>
  8.     {% block stylesheets %}{% endblock %}
  9.     {% block head_javascripts %}{% endblock %}
  10. </head>
  11. <body class="{{ the_class |default() }}">
  12. {% block body %}{% endblock %}
  13. {% block javascripts %}{% endblock %}
  14. </body>
  15. </html>