templates/raw.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 %}{{ setting('appTitle') }}{% endblock %}</title>
  7.     {% include '_partial/head.html.twig' %}
  8.     <link rel="stylesheet" href="{{ asset(('themes/'~setting('themes.default')~'/theme.css')|ver) }}">
  9.     {% if app.request.cookies.get('theme') is defined and app.request.cookies.get('theme') != '' and app.request.cookies.get('theme') != setting('themes.default') %}
  10.         <link rel="stylesheet" href="{{ asset(('themes/'~app.request.cookies.get('theme')~'/theme.css')|ver ) }}">
  11.     {% endif %}
  12.     {% block stylesheets %}{% endblock %}
  13. </head>
  14. <body class="{% block bodyclass %}{% endblock %}">
  15. {% block body %}{% endblock %}
  16. </body>
  17. </html>