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