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. {% if app.user and app.environment != 'prod' %}
  16. {{ render(controller('App\\Controller\\Access\\WindowAccessController::modal')) }}
  17. {% endif %}
  18. {% block javascripts %}
  19. {{ include('section/javascript.html.twig') }}
  20. {% endblock %}
  21. </body>
  22. </html>