templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Bienvenue!{% endblock %}</title>
  6.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  7.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  8.         <link rel="shortcut icon" href="{{ asset("theme/media/logos/favicon.ico") }}" />
  9.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,700" />
  10.         {% block stylesheets %}
  11.             {{ encore_entry_link_tags('app') }}
  12.             <!--begin::Global Stylesheets Bundle(used by all pages)-->
  13.             <link href="{{ asset("theme/plugins/global/plugins.bundle.css") }}" rel="stylesheet" type="text/css" />
  14.             <link href="{{ asset("theme/css/style.bundle.css") }}" rel="stylesheet" type="text/css" />
  15.             <!--end::Global Stylesheets Bundle-->
  16.         {% endblock %}
  17.     </head>
  18.     <!--begin::Body-->
  19.     <body id="kt_body" class="header-fixed header-tablet-and-mobile-fixed aside-fixed aside-secondary-disabled">
  20.     <!--begin::Root-->
  21.     <div class="d-flex flex-column flex-root">
  22.         <!--begin::Page-->
  23.         <div class="page d-flex flex-row flex-column-fluid">
  24.             <!--begin::Aside-->
  25.             {% include '_partial/_aside.html.twig' %}
  26.             <!--end::Aside-->
  27.             <!--begin::Wrapper-->
  28.             <div class="wrapper d-flex flex-column flex-row-fluid" id="kt_wrapper">
  29.                 <!--begin::Header-->
  30.                 {% include '_partial/_header.html.twig' with {breakcumb: block('breakcumb')} %}
  31.                 <!--end::Header-->
  32.                 <!--begin::Content-->
  33.                 <div class="content d-flex flex-column flex-column-fluid" id="kt_content">
  34.                     <!--begin::Container-->
  35.                     <div class="container" id="kt_content_container">
  36.                         {% block body %}{% endblock %}
  37.                     </div>
  38.                     <!--end::Container-->
  39.                 </div>
  40.                 <!--end::Content-->
  41.                 <!--begin::Footer-->
  42.                 {% include '_partial/_footer.html.twig' %}
  43.                 <!--end::Footer-->
  44.             </div>
  45.             <!--end::Wrapper-->
  46.         </div>
  47.         <!--end::Page-->
  48.     </div>
  49.     <!--end::Root-->
  50.     {% block drawers %}{% endblock %}
  51.     {% block modal %}{% endblock %}
  52.     <!--begin::Scrolltop-->
  53.     <div id="kt_scrolltop" class="scrolltop" data-kt-scrolltop="true">
  54.         <!--begin::Svg Icon | path: icons/duotone/Navigation/Up-2.svg-->
  55.         <span class="svg-icon">
  56.                 <svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" version="1.1">
  57.                     <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
  58.                         <polygon points="0 0 24 0 24 24 0 24" />
  59.                         <rect fill="#000000" opacity="0.5" x="11" y="10" width="2" height="10" rx="1" />
  60.                         <path d="M6.70710678,12.7071068 C6.31658249,13.0976311 5.68341751,13.0976311 5.29289322,12.7071068 C4.90236893,12.3165825 4.90236893,11.6834175 5.29289322,11.2928932 L11.2928932,5.29289322 C11.6714722,4.91431428 12.2810586,4.90106866 12.6757246,5.26284586 L18.6757246,10.7628459 C19.0828436,11.1360383 19.1103465,11.7686056 18.7371541,12.1757246 C18.3639617,12.5828436 17.7313944,12.6103465 17.3242754,12.2371541 L12.0300757,7.38413782 L6.70710678,12.7071068 Z" fill="#000000" fill-rule="nonzero" />
  61.                     </g>
  62.                 </svg>
  63.             </span>
  64.         <!--end::Svg Icon-->
  65.     </div>
  66.     <!--end::Scrolltop-->
  67.     {% block javascripts %}
  68.         <!--begin::Javascript-->
  69.         <!--begin::Global Javascript Bundle(used by all pages)-->
  70.         <script src="{{ asset("theme/plugins/global/plugins.bundle.js") }}"></script>
  71.         <script src="{{ asset("theme/js/scripts.bundle.js") }}"></script>
  72.         <!--end::Global Javascript Bundle-->
  73.         <!--begin::Page Custom Javascript(used by this page)-->
  74.         <script src="{{ asset("theme/js/custom/widgets.js") }}"></script>
  75.         <!--end::Page Custom Javascript-->
  76.         <!--end::Javascript-->
  77.         {{ encore_entry_script_tags('app') }}
  78.     {% endblock %}
  79.     </body>
  80.     <!--end::Body-->
  81. <div style="display: none">
  82.     {% block breakcumb %}{% endblock %}
  83. </div>
  84. </html>