src/Presentation/Web/templates/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8"/>
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <link rel="shortcut icon" type="image/png" href="{{ asset('build/images/favicon.png') }}"/>
  7.         <title>
  8.             {% block title %}
  9.                 {{ "layout.title" | trans }}
  10.             {% endblock %}
  11.         </title>
  12.         {% block stylesheets %}
  13.             {{ encore_entry_link_tags("app") }}
  14.         {% endblock %}
  15.         {% block javascripts %}
  16.             {{ encore_entry_script_tags("app") }}
  17.         {% endblock %}
  18.     </head>
  19.     {% block body %}
  20.         <body class="sidebar-mini layout-fixed layout-navbar-fixed">
  21.             <div class="wrapper">
  22.                 {% block navbar %}
  23.                     {% include '_navbar.html.twig' %}
  24.                 {% endblock %}
  25.                 {% block sidebar %}
  26.                     {% include '_sidebar.html.twig' %}
  27.                 {% endblock %}
  28.                 <div class="content-wrapper" style="min-height: 855px">
  29.                     <section class="content-header"></section>
  30.                     <section class="content">
  31.                         <div class="container-fluid">
  32.                             {% block content %}{% endblock %}
  33.                         </div>
  34.                     </section>
  35.                 </div>
  36.             </div>
  37.         </body>
  38.     {% endblock %}
  39.     {% block alerts %}
  40.         {% include '_alerts.html.twig' %}
  41.     {% endblock %}
  42. </html>