{# ========================================================================== #}
{# :: Default brandplatform page #}
{# ========================================================================== #}
{#
	The simple page setup for the brandplatform containing a header, footer and
	a main content block to implement the content of the page.
#}

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

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

	<body class="bp-l-root bp-l-root--without-aside {{pageParams.bodyClass}}">
		{% if BODYSTART.hasCustomBpBodyStart %}
			{% include BODYSTART.bpBodyStartPath %}
		{% endif %}

		{% block header %}{% endblock %}

		<main class="bp-l-root__main">
			{% block content %}{% endblock %}
		</main>

		{% block footer %}{% endblock %}

		{% block feedback %}{% endblock %}

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

</html>
