templates/auth/base.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="{{ app.request.locale }}">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     {# Meta #}
  8.     <title>{% block head_title %}{{ bag.get('head_title') }}{% endblock %}</title>
  9.     <meta name="description" content="{{ bag.get('head_description') }}"/>
  10.     <meta name="keywords" content="{{ bag.get('head_keywords') }}"/>
  11.     <meta name="author" content="{{ bag.get('head_author') }}"/>
  12.     <link rel="icon" href="{{ asset(bag.get('site_favicon'), 'upload') }}">
  13.     {#-- Include Assets --#}
  14.     <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,400,500">
  15.     <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
  16.     <link rel="stylesheet" href="{{ asset('build/auth.css') }}">
  17.     {# Head Block #}
  18.     {% block head %}{% endblock %}
  19. </head>
  20. <body>
  21.     <div id="auth-wrap">
  22.         {% block body %}{% endblock %}
  23.     </div>
  24. </body>
  25. </html>