templates/custom-base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  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 – 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/custom-styles.html.twig') }}
  16.         
  17.         {% endblock %}
  18.      
  19.     </head>
  20.     <body  class="ltr error-bg">
  21.         <!-- GLOBAL-LOADER -->
  22.         <div id="global-loader">
  23.             <img src="{{absolute_url(asset('build/images/loader.svg'))}}" class="loader-img" alt="Loader">
  24.         </div>
  25.         <!-- /GLOBAL-LOADER -->
  26.         <!-- PAGE -->
  27.         <div class="page">
  28.            <div>            
  29.                 <!-- CONTENT -->
  30.                 {% block body %}
  31.                 {% endblock %}
  32.                 <!-- CONTENT CLOSED-->            
  33.             </div>
  34.         </div>
  35.         {% block javascripts %}
  36.         {{ include('layouts/custom-scripts.html.twig') }}
  37.         {% endblock %}
  38.     </body>
  39. </html>