templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html class="no-js" class="no-js" lang="fr">
  3.     
  4.     
  5.     {% include 'layouts/head.html.twig' %}
  6.     
  7.     <body class="body__wrapper">
  8.     
  9.         <!-- Dark/Light area start -->
  10.         <div class="mode_switcher my_switcher">
  11.             <button id="light--to-dark-button" class="light align-items-center">
  12.                 <svg xmlns="http://www.w3.org/2000/svg" class="ionicon dark__mode" viewBox="0 0 512 512"><path d="M160 136c0-30.62 4.51-61.61 16-88C99.57 81.27 48 159.32 48 248c0 119.29 96.71 216 216 216 88.68 0 166.73-51.57 200-128-26.39 11.49-57.38 16-88 16-119.29 0-216-96.71-216-216z" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="32"/></svg>
  13.                 <svg xmlns="http://www.w3.org/2000/svg" class="ionicon light__mode" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="32" d="M256 48v48M256 416v48M403.08 108.92l-33.94 33.94M142.86 369.14l-33.94 33.94M464 256h-48M96 256H48M403.08 403.08l-33.94-33.94M142.86 142.86l-33.94-33.94"/><circle cx="256" cy="256" r="80" fill="none" stroke="currentColor" stroke-linecap="round" stroke-miterlimit="10" stroke-width="32"/></svg>
  14.                 <span class="light__mode">Light</span>
  15.                 <span class="dark__mode">Dark</span>
  16.             </button>
  17.         </div>
  18.         <!-- Dark/Light area end -->
  19.         <main class="main_wrapper overflow-hidden">
  20.         
  21.         
  22.             {% include 'layouts/header.html.twig' %}
  23.             {% include 'layouts/menu_mobile.html.twig' %}
  24.             <!-- theme fixed shadow -->
  25.                 <div>
  26.                     <div class="theme__shadow__circle"></div>
  27.                     <div class="theme__shadow__circle shadow__right"></div>
  28.                 </div>
  29.             <!-- theme fixed shadow -->
  30.             {% block body %}{% endblock %}
  31.             <!--- /Footer -->
  32.             {% include 'layouts/footer.html.twig' %}
  33.             <!--- /Footer -->
  34.         </main>
  35.         
  36.         <!-- /Header -->
  37.             
  38.         {% include 'layouts/footerjs.html.twig' %}
  39.         {% block js %}{% endblock %}
  40.     </body>
  41. </html>