<!DOCTYPE HTML>

{% set htmlAttr = {
	lang: currentSite.language,
	dir: craft.app.i18n.getLocaleById(currentSite.id).getOrientation(),
} %}

<html {{attr(htmlAttr)}}>
<head>


{% include '_system/seo' %}
{% include '_system/meta' %}
{% include '_system/favicons' %}
{% include '_system/fonts' %}
{% include '_system/tag_manager' %}

<link rel="stylesheet" href="{{ mix('static/app.css') }}">
<script src="{{ mix('static/app.js') }}"></script>

</head>

{% set bodyAttr = {
	class: [
		body_class ?? null,
		craft.app.request.isMobileBrowser() ? 'is-mobile' : 'is-desktop',
	]
} %}

<body {{attr(bodyAttr)}}>

{% include '_components/quick_edit' %}
{% block layout %}{% endblock %}

</body>
</html>
