templates/layout/master.html.twig line 1

  1. <!DOCTYPE html>
  2. <html {{ theme.printHtmlAttributes('html') | raw }} lang="fr">
  3. <!--begin::Head-->
  4. <head>
  5.     <base href=""/>
  6.     <title>{% block page_title %}{% endblock %} - SMH BHALALALLAH</title>
  7.     <meta charset="utf-8"/>
  8.     <meta name="description" content=""/>
  9.     <meta name="keywords" content=""/>
  10.     <meta name="viewport" content="width=device-width, initial-scale=1"/>
  11.     <meta property="og:locale" content="en_US"/>
  12.     <meta property="og:type" content="article"/>
  13.     <meta property="og:title" content=""/>
  14.     <link rel="canonical" href=""/>
  15.     {{ theme.includeFavicon() | raw }}
  16.     <!--begin::Fonts-->
  17.     {{ theme.includeFonts() | raw }}
  18.     <!--end::Fonts-->
  19.     {% block stylesheets %}
  20.          {{ encore_entry_link_tags('app') }}
  21.         {{ encore_entry_link_tags('notyf') }}
  22.         <!--begin::Global Stylesheets Bundle(used by all pages)-->
  23.         {% for path in theme.getGlobalAssets('css') %}
  24.             <link rel="stylesheet" href="{{ theme.asset(path) }}">
  25.         {% endfor %}
  26.         <!--end::Global Stylesheets Bundle-->
  27.         <!--begin::Vendor Stylesheets(used by this page)-->
  28.         {% for path in theme.getVendors('css') %}
  29.             <link rel="stylesheet" href="{{ theme.asset(path) }}">
  30.         {% endfor %}
  31.         <!--end::Vendor Stylesheets-->
  32.         <!--begin::Custom Stylesheets(optional)-->
  33.         <link rel="stylesheet" href="{{ asset('css/custom-style.css') }}">
  34.         {% for path in theme.getCustomCss() %}
  35.             <link rel="stylesheet" href="{{ theme.asset(path) }}">
  36.         {% endfor %}
  37.         <!--end::Custom Stylesheets-->
  38.     {% endblock %}
  39. </head>
  40. <!--end::Head-->
  41. <!--begin::Body-->
  42. <body id="kt_app_body" {{ theme.printHtmlClasses('body') }} {{ theme.printHtmlAttributes('body') | raw }}>
  43. {% include 'partials/theme-mode/_init.html.twig' %}
  44. {% block layout %}{% endblock %}
  45. {% block javascripts %}
  46.      {{ encore_entry_script_tags('app') }}
  47.      {{ encore_entry_script_tags('dataTable') }}
  48.     {{ encore_entry_script_tags('notyf') }}
  49.     <!--begin::Javascript-->
  50.     <!--begin::Global Javascript Bundle(mandatory for all pages)-->
  51.     {% for path in theme.getGlobalAssets() %}
  52.     <script src="{{ theme.asset(path) }}"></script>
  53.     {% endfor %}
  54.     <!--end::Global Javascript Bundle-->
  55.     <!--begin::Vendors Javascript(used by this page)-->
  56.     {% for path in theme.getVendors('js') %}
  57.     <script src="{{ theme.asset(path) }}"></script>
  58.     {% endfor %}
  59.     <!--end::Vendors Javascript-->
  60.     <!--begin::Custom Javascript(optional)-->
  61.     {% for path in theme.getCustomJs() %}
  62.     <script src="{{ theme.asset(path) }}"></script>
  63.     {% endfor %}
  64.     <!--end::Custom Javascript-->
  65.     <!--end::Javascript-->
  66. {% endblock %}
  67. </body>
  68. <!--end::Body-->
  69. </html>