templates/base.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Welcome!{% endblock %}</title>
  6.         <meta name="viewport" content="width=device-width, initial-scale=1">
  7.         <meta name="description" content="L'Image by Sofitel Luxembourg Le Grand Ducal">
  8.         <meta name="robots" content="noindex, nofollow">
  9.         <link rel="icon" href="{{ asset('./images/favicon.ico') }}"/>        
  10.         {% block stylesheets %}
  11.             {{ encore_entry_link_tags('app') }}
  12.         {% endblock %}
  13.     </head>
  14.     <body>
  15.         {% block body %}{% endblock %}
  16.     </body>
  17.     {% block javascripts %}
  18.         {{ encore_entry_script_tags('app') }}
  19.     {% endblock %}
  20. </html>