templates/base.html.twig line 1

Open in your IDE?
  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="Présentation et blog de la Ville Tanet à Landéhen - Gîte et pension de chevaux">
  8.         <meta name="author" content="Julia Remezova, Ville Tanet, Landéhen">
  9.         <!-- Favicons -->
  10.         <link rel="icon" href="{{ asset("build/images/favicons/favicon-32x32.png") }}" sizes="32x32" type="image/png">
  11.         <link rel="icon" href="{{ asset("build/images/favicons/favicon-16x16.png") }}" sizes="16x16" type="image/png">
  12.         <link rel="icon" href="{{ asset("build/images/favicons/favicon.ico") }}">
  13.         {% block stylesheets %}
  14.             {{ encore_entry_link_tags('app') }}
  15.         {% endblock %}
  16.         {% block javascripts %}
  17.             {{ encore_entry_script_tags('app') }}
  18.         {% endblock %}
  19.     </head>
  20.     <body>
  21.         {% block body %}{% endblock %}
  22.     </body>
  23. </html>