{# ========================================================================== #}
{# :: Sandbox page #}
{# ========================================================================== #}
{#
	Page used to display a component seperate from all the styling from the
	brandplatform.
#}

{# ========================================================================== #}
{# :: Inheritance #}
{# ========================================================================== #}
{% extends "base/extends/sandbox.njk" %}

{# ========================================================================== #}
{# :: Imports #}
{# ========================================================================== #}
{% if ROUTEDATA.VARIATION %}
	{% import ROUTEDATA.VARIATION.source as component %}
{% endif %}

{# ========================================================================== #}
{# :: Settings & variables #}
{# ========================================================================== #}
{% set pageParams = {
	bodyClass: "",
	styleVendors: ROUTEDATA.VARIATION.styleVendors or [],
	scriptVendors: ROUTEDATA.VARIATION.scriptVendors or [],
	loadProjectCSS: true,
	loadProjectJS: true
} %}

{# ========================================================================== #}
{# :: Content #}
{# ========================================================================== #}
{% block content %}

	{% if component %}
		{{component.preview | safe}}
	{% endif %}

{% endblock %}

