templates/base-fullpage.html.twig line 1

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"
  7.       content="width=device-width, initial-scale=1, shrink-to-fit=no" />
  8.     <meta name="description" content="Containers and Po" />
  9.     <meta name="author" content="Solido" />
  10.     <title>
  11.       {% block title %}
  12.         Containers
  13.       {% endblock %}
  14.     </title>
  15.     <link href="{{ asset('theme/dist/css/app.css') }}" rel="stylesheet" />
  16.     {% block stylesheets %}
  17.     {% endblock %}
  18.     {% block javascripts_top %}
  19.     {% endblock %}
  20.   </head>
  21.   <body>
  22.     <main class="d-flex w-100">
  23.       <div class="container d-flex flex-column">
  24.         <div class="row vh-100">
  25.           {% block body %}
  26.           {% endblock %}
  27.         </div>
  28.       </div>
  29.     </main>
  30.     <script src="{{ asset('theme/dist/js/app.js') }}"></script>
  31.     
  32.     {% block javascripts %}
  33.     {% endblock %}
  34.   </body>
  35. </html>