{# ========================================================================== #}
{# :: Sandbox component page #}
{# ========================================================================== #}
{#
	The sandbox component page does not contain any visible elements. It can for
	example mainly be used to visualise one element based on the url.
#}

{# ========================================================================== #}
{# :: Settings & variables #}
{# ========================================================================== #}
{% set styleVendors = [] %}
{% set scriptVendors = [] %}
{% set data = ROUTEDATA or {} %}
{% set variation = data.VARIATION or NULL %}

{% if variation %}
	{% import variation.source as v %}

	{% set styleVendors = v.params.styleVendors %}
	{% set scriptVendors = v.params.scriptVendors %}
{% endif %}

{# ========================================================================== #}
{# :: Template #}
{# ========================================================================== #}
<!DOCTYPE html>
<html lang="en">

	{% include "base/includes/head.njk" %}

	<body class="{{pageParams.bodyClass}}">
		{% block content %}{% endblock %}

		{% include "base/includes/foot.njk" %}
	</body>

</html>
