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.         {% for path in theme.getCustomCss() %}
  34.             <link rel="stylesheet" href="{{ theme.asset(path) }}">
  35.         {% endfor %}
  36.         <!--end::Custom Stylesheets-->
  37.     {% endblock %}
  38. </head>
  39. <!--end::Head-->
  40. <!--begin::Body-->
  41. <body id="kt_app_body" {{ theme.printHtmlClasses('body') }} {{ theme.printHtmlAttributes('body') | raw }}>
  42. {% include 'partials/theme-mode/_init.html.twig' %}
  43. {% block layout %}{% endblock %}
  44. {% block javascripts %}
  45.      {{ encore_entry_script_tags('app') }}
  46.      {{ encore_entry_script_tags('dataTable') }}
  47.     {{ encore_entry_script_tags('notyf') }}
  48.     <!--begin::Javascript-->
  49.     <!--begin::Global Javascript Bundle(mandatory for all pages)-->
  50.     {% for path in theme.getGlobalAssets() %}
  51.     <script src="{{ theme.asset(path) }}"></script>
  52.     {% endfor %}
  53.     <!--end::Global Javascript Bundle-->
  54.     <!--begin::Vendors Javascript(used by this page)-->
  55.     {% for path in theme.getVendors('js') %}
  56.     <script src="{{ theme.asset(path) }}"></script>
  57.     {% endfor %}
  58.     <!--end::Vendors Javascript-->
  59.     <!--begin::Custom Javascript(optional)-->
  60.     {% for path in theme.getCustomJs() %}
  61.     <script src="{{ theme.asset(path) }}"></script>
  62.     {% endfor %}
  63.     <!--end::Custom Javascript-->
  64.     <!--end::Javascript-->
  65. {% endblock %}
  66. </body>
  67. <!--end::Body-->
  68. </html>