templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="description" content="">
  6.     <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
  7.     <title>Dalux Integration</title>
  8.     <meta name="msapplication-TileColor" content="#123d99">
  9.     <meta name="theme-color" content="#123d99">
  10.     <link href="{{ asset('build/app.css') }}" rel="stylesheet">
  11.     {% block stylesheets %}{% endblock %}
  12. </head>
  13. <body>
  14. {% block body %}{% endblock %}
  15. {% block javascripts %}{% endblock %}
  16. </body>
  17. <script src="{{ asset('build/app.js') }}"></script>
  18. </html>