{% if editmode %}
<!doctype html>
<html lang="{{ app.request.locale }}">
<head>
{% block stylesheets deferred %}
{{ encore_entry_link_tags('app') }}
{{ pimcore_head_link() }}
{% endblock %}
</head>
<body class="bg-black text-white font-sans{% if editmode %} editmode{% endif %}">
<main role="main">
<div class="main-content bg-black text-white">
{% endif %}
{{ pimcore_areablock('default_snippet_template_content', toolbox_areablock_config('default_snippet_template_content')) }}
{% if editmode %}
</div>
</main>
{# output scripts added before #}
{% block scripts deferred %}
{{ encore_entry_script_tags('app') }}
{{ pimcore_head_script() }}
{% endblock %}
</body>
</html>
{% endif %}