templates/_layout/header/_base.html.twig line 1

Open in your IDE?
  1. <!--begin::Header-->
  2. <div id="kt_header" style="" class="header align-items-stretch">
  3.     <!--begin::Container-->
  4.     <div class="container-fluid d-flex align-items-stretch justify-content-between">
  5.         <!--begin::Aside mobile toggle-->
  6.         <div class="d-flex align-items-center d-lg-none ms-n3 me-1" title="Show aside menu">
  7.             <div class="btn btn-icon btn-active-light-primary w-30px h-30px w-md-40px h-md-40px"
  8.                  id="kt_aside_mobile_toggle">
  9.                 <!--begin::Svg Icon | path: icons/duotune/abstract/abs015.svg-->
  10.                 <span class="svg-icon svg-icon-2x mt-1">
  11.                                         <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"
  12.                                              viewBox="0 0 24 24" fill="none">
  13.                                             <path d="M21 7H3C2.4 7 2 6.6 2 6V4C2 3.4 2.4 3 3 3H21C21.6 3 22 3.4 22 4V6C22 6.6 21.6 7 21 7Z"
  14.                                                   fill="black"/>
  15.                                             <path opacity="0.3"
  16.                                                   d="M21 14H3C2.4 14 2 13.6 2 13V11C2 10.4 2.4 10 3 10H21C21.6 10 22 10.4 22 11V13C22 13.6 21.6 14 21 14ZM22 20V18C22 17.4 21.6 17 21 17H3C2.4 17 2 17.4 2 18V20C2 20.6 2.4 21 3 21H21C21.6 21 22 20.6 22 20Z"
  17.                                                   fill="black"/>
  18.                                         </svg>
  19.                                     </span>
  20.                 <!--end::Svg Icon-->
  21.             </div>
  22.         </div>
  23.         <!--end::Aside mobile toggle-->
  24.         <div class="d-flex align-items-center flex-grow-1 flex-lg-grow-0">
  25.             <h1 class="d-flex align-items-center text-dark fw-bolder fs-3 my-1">{{ title }}</h1>
  26.         </div>
  27.         <!--begin::Wrapper-->
  28.         <div class="d-flex align-items-stretch justify-content-between flex-lg-grow-1">
  29.             <!--begin::Navbar-->
  30.             <div class="d-flex align-items-stretch" id="kt_header_nav"></div>
  31.             <!--end::Navbar-->
  32.             <!--begin::Topbar-->
  33.             <div class="d-flex align-items-stretch flex-shrink-0">
  34.                 <!--layout-partial:layout/topbar/_base.html-->
  35.                 {% include '_layout/topbar/_base.html.twig' %}
  36.             </div>
  37.             <!--end::Topbar-->
  38.         </div>
  39.         <!--end::Wrapper-->
  40.     </div>
  41.     <!--end::Container-->
  42. </div>
  43. <!--end::Header-->
  44.