<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{{ setting('appTitle') }}{% endblock %}</title>
{% include '_partial/head.html.twig' %}
<link rel="stylesheet" href="{{ asset(('themes/'~setting('themes.default')~'/theme.css')|ver) }}">
{% if app.request.cookies.get('theme') is defined and app.request.cookies.get('theme') != '' and app.request.cookies.get('theme') != setting('themes.default') %}
<link rel="stylesheet" href="{{ asset(('themes/'~app.request.cookies.get('theme')~'/theme.css')|ver ) }}">
{% endif %}
{% block stylesheets %}{% endblock %}
</head>
<body class="{% block bodyclass %}{% endblock %}">
{% block body %}{% endblock %}
</body>
</html>