templates/base.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.0">
  6.         
  7.         <title>{% block title %}{{ project.name ~ ' | ' ~ title }}{% endblock %}</title>
  8.         <link rel="shortcut icon" href="/assets/img/favicon.ico" type="image/x-icon">
  9.         {% block stylesheets %}
  10.             {{ include('section/stylesheet.html.twig') }}
  11.         {% endblock %}
  12.     </head>
  13.     <body class="{{ bodyClass|default('hold-transition sidebar-mini layout-fixed') }}">
  14.         {% block wrapper %}
  15.         {% endblock %}
  16.         {% block javascripts %}
  17.             {{ include('section/javascript.html.twig') }}
  18.         {% endblock %}
  19.     </body>
  20. </html>