app/Resources/views/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.0, maximum-scale=1.0, user-scalable=0" />
  7.         <meta name="format-detection" content="telephone=no">
  8.         {% block stylesheets %}
  9.             <link href="{{ asset('bundles/app/css/app.css?ver14543256903313') }}" type="text/css" rel="stylesheet" />
  10.         {% endblock %}
  11.         <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
  12.         <link href="https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400;700&display=swap" rel="stylesheet">
  13.     </head>
  14.     <body class="user-admin {{ pageSpecialClass | default('other-page') }} {% block classTheme %}{% endblock %}">
  15.         {% block body %}{% endblock %}
  16.         {% block javascripts %}{% endblock %}
  17.     </body>
  18. </html>