templates/base_security.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <!--
  3. Site template based on AdminLTE.io starter template page under MIT license.
  4. -->
  5. <html lang="en">
  6. <head>
  7.     <meta charset="utf-8">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1">
  9.     <link rel="icon" href="{{ asset('dist/img/favico.png') }}">
  10.     <title>{% block title %}{% endblock %}</title>
  11.     <!-- Google Font: Source Sans Pro -->
  12.     <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
  13.     <!-- Font Awesome Icons -->
  14.     <link rel="stylesheet" href="{{ asset('plugins/fontawesome-free/css/all.min.css') }}">
  15.     <!-- icheck bootstrap -->
  16.     <link rel="stylesheet" href="{{ asset('plugins/icheck-bootstrap/icheck-bootstrap.min.css') }}">
  17.     <!-- Theme style -->
  18.     <link rel="stylesheet" href="{{ asset('dist/css/adminlte.min.css') }}">
  19.     <!-- Custom -->
  20.     <link rel="stylesheet" href="{{ asset('dist/css/main.css') }}">
  21. </head>
  22. <body class="hold-transition login-page">
  23. <div class="content-header">
  24.     <div class="container-fluid">
  25.         <div class="row">
  26.             <div class="col-md-8 offset-md-2">
  27.                 <div class="example-wrapper">
  28.                     {% for type, flash in app.flashes %}
  29.                         {% for message in flash|unique %}
  30.                             <div class="alert alert-{{ type }}">
  31.                                 {{ message }}
  32.                             </div>
  33.                         {% endfor %}
  34.                     {% endfor %}
  35.                 </div>
  36.             </div><!-- /.container-fluid -->
  37.         </div><!-- /.container-fluid -->
  38.     </div><!-- /.container-fluid -->
  39. </div>
  40. {% if not ('prod' == app.environment) %}
  41.     <span class="badge badge-warning">{{ app.environment|upper }}</span>
  42. {% endif %}
  43. {% block body %}
  44. {% endblock %}
  45. <!-- jQuery -->
  46. <script src="{{ asset('plugins/jquery/jquery.min.js') }}"></script>
  47. <!-- Bootstrap 4 -->
  48. <script src="{{ asset('plugins/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
  49. <!-- AdminLTE App -->
  50. <script src="{{ asset('dist/js/adminlte.min.js') }}"></script>
  51. <!-- Bootstrap -->
  52. <script src="{{ asset('dist/js/bootstrap-select.js') }}"></script>
  53. <!-- Custom -->
  54. <script src="{{ asset('dist/js/main.js') }}"></script>
  55. </body>
  56. </html>