templates/base_login.html.twig line 28

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.     <meta name="description" content="Docustack">
  8.     <meta name="author" content="47GradNord - Agentur für Internetlösungen">
  9.     <title>{% block title %}docustack{% endblock %}</title>
  10.     <!-- Custom fonts for this template-->
  11.     <link href="{{ asset('layout/dist/vendor/fontawesome-free/css/all.min.css') }}" rel="stylesheet" type="text/css">
  12.     <link href="https://fonts.googleapis.com/css?family=Montserrat:400,600|Roboto&display=swap" rel="stylesheet">
  13.     <!-- Custom styles for this template-->
  14.     <link href="{{ asset('layout/dist/css/sb-admin-2.min.css') }}" rel="stylesheet" type="text/css">
  15.     {% block stylesheets %}{% endblock %}
  16. </head>
  17. <body id="page-top">
  18. <div class="container">
  19.     {% block body %}{% endblock %}
  20. </div>
  21. <!-- Scroll to Top Button-->
  22. <a class="scroll-to-top rounded" href="#page-top">
  23.     <i class="fas fa-angle-up"></i>
  24. </a>
  25. <!-- Bootstrap core JavaScript-->
  26. <script src="{{ asset('layout/dist/vendor/jquery/jquery.min.js') }}"></script>
  27. <script src="{{ asset('layout/dist/vendor/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
  28. <!-- Core plugin JavaScript-->
  29. <script src="{{ asset('layout/dist/vendor/jquery-easing/jquery.easing.min.js') }}"></script>
  30. <!-- Custom scripts for all pages-->
  31. <script src="{{ asset('layout/dist/js/sb-admin-2.min.js') }}"></script>
  32. </body>
  33. </html>