templates/userbase.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <title>{% block title %}Welcome{% endblock %}</title>
  7.     <!-- Tell the browser to be responsive to screen width -->
  8.     <meta name="viewport" content="width=device-width, initial-scale=1">
  9.     {% block stylesheets %}
  10.         {{ encore_entry_link_tags('app') }}
  11.         <!-- Ionicons -->
  12.         <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  13.         <!-- Google Font: Source Sans Pro -->
  14.         <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
  15.     {% endblock %}
  16. </head>
  17. <body class="hold-transition login-page">
  18.     {% block body %}{% endblock %}
  19.     {% block javascripts %}
  20.         {{ encore_entry_script_tags('app') }}
  21.         <script src="{{ asset('assets/js/navigator.js') }}"></script>
  22.     {% endblock %}
  23. </body>
  24. </html>