templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <!-- META DATA -->
  5.         <meta charset="UTF-8">
  6.         <meta name='viewport' content='width=device-width, initial-scale=1.0, user-scalable=0'>
  7.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8.         <meta name="description" content="Noa – Symfony Bootstrap 5 Admin & Dashboard Template">
  9.         <meta name="author" content="Spruko Technologies Private Limited">
  10.         <meta name="keywords" content="admin,admin dashboard,admin panel,admin template,bootstrap,clean,dashboard,flat,jquery,modern,responsive,premium admin templates,responsive admin,ui,ui kit.">
  11.         
  12.         <!-- TITLE -->
  13.         <title> Noa – Symfony Bootstrap 5 Admin & Dashboard Template </title>
  14.         {% block stylesheets %}
  15.         {{ include('layouts/styles.html.twig') }}
  16.         {% endblock %}
  17.     </head>
  18.     <body  class="ltr app sidebar-mini light-mode">
  19.         <!-- GLOBAL-LOADER -->
  20.         <div id="global-loader">
  21.             <img src="{{absolute_url(asset('build/images/loader.svg'))}}" class="loader-img" alt="Loader">
  22.         </div>
  23.         <!-- /GLOBAL-LOADER -->
  24.         <!-- PAGE -->
  25.         <div class="page">
  26.             <div class="page-main">
  27.                 <!-- APP-HEADER -->
  28.                 {{ include('layouts/app-header.html.twig') }}
  29.                 <!-- APP-HEADER CLOSED -->
  30.                 
  31.                 <!-- APP-SIDEBAR -->
  32.                 {{ include('layouts/app-sidebar.html.twig') }}
  33.                 <!-- APP-SIDEBAR CLOSED-->
  34.                 <!-- APP CONTENT -->
  35.                 <div class="app-content main-content mt-0">
  36.                     <div class="side-app">
  37.                         <!-- CONTAINER -->
  38.                         <div class="main-container container-fluid">
  39.                             
  40.                             <!-- CONTENT -->
  41.                             {% block body %}
  42.                             {% endblock %}
  43.                             <!-- CONTENT CLOSED-->
  44.                         </div>
  45.                         <!-- CONTAINER END -->
  46.                     </div>
  47.                 </div>
  48.                 <!-- APP CONTENT CLOSED-->
  49.             </div>
  50.             
  51.             <!-- COUNTRY-SELECTOR-MODAL -->
  52.             {{ include('layouts/modal.html.twig') }}
  53.             <!-- END COUNTRY-SELECTOR-MODAL -->
  54.             <!-- FOOTER -->
  55.             {{ include('layouts/footer.html.twig') }}
  56.             <!-- FOOTER CLOSED-->
  57.         </div>
  58.         {% block javascripts %}     
  59.          {{ include('layouts/scripts.html.twig') }}
  60.         {% endblock %}
  61.     </body>
  62. </html>