{# ========================================================================== #}
{# :: API brandplatform page #}
{# ========================================================================== #}
{#
	The default page setup for the brandplatform pages renderd by the CMS API
	containing a header, sidebar, footer and a main content item to implement
	the content of the page.
#}

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

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

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

		{% block aside %}{% endblock %}

		<div class="bp-l-root__content">
			{% block header %}{% endblock %}

			<main class="bp-l-root__main">
				<div class="bp-l-container bp-l-container--secondary@above-base">
					{% block content %}{% endblock %}
				</div>
			</main>

			{% block footer %}{% endblock %}

			{% block feedback %}{% endblock %}
		</div>

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

</html>
