templates/base-auth.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.     <!-- Required meta tags -->
  5.     <meta charset="utf-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.     <!-- Meta -->
  8.     <meta name="description" content="Responsive Bootstrap4 Dashboard Template">
  9.     <meta name="author" content="ParkerThemes">
  10.     <link rel="shortcut icon" href="{{asset('assets/img/fav.png')}}" />
  11.     <!-- Title -->
  12.     <title>La bibliothèque numérique - {% block title %}{% endblock %}</title>
  13.     <!-- ************* Common Css Files ************* -->
  14.     <!-- Bootstrap CSS -->
  15.     <link rel="stylesheet" href="{{asset('assets/css/bootstrap.min.css')}}" />
  16.     <!-- Master CSS -->
  17.     <link rel="stylesheet" href="{{asset('assets/css/main.css')}}" />
  18. </head>
  19. <body class="authentication">
  20.     <!-- Container start -->
  21.     <div class="container">
  22.         {% block body %}{% endblock %}
  23.     </div>
  24.     <!-- Container end -->
  25. </body>
  26. </html>