{# ========================================================================== #}
{# :: Home page #}
{# ========================================================================== #}
{#
	This is the main or home page of the brandplatform containing information
	about the current version, the cdn and links to the pages and components.
#}

{# ========================================================================== #}
{# :: Imports #}
{# ========================================================================== #}
{% import "components/header.njk" as header %}
{% import "components/footer.njk" as footer %}
{% import "globals/nav.njk" as navGlobals %}

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

{# ========================================================================== #}
{# :: Settings & variables #}
{# ========================================================================== #}
{% set pageParams = {
	id: "home",
	bodyClass: "",
	loadProjectCSS: false,
	loadProjectJS: false,
	loadCoreCSS: true,
	loadCoreJS: true,
	loadOverwriteCSS: true
} %}

{# ========================================================================== #}
{# :: Header #}
{# ========================================================================== #}
{% block header %}

	{{header.default("", {
		nav: {
			active: "home",
			items: navGlobals.items,
			language: ROUTEDATA.LANGUAGE,
			languages: ROUTEDATA.LANGUAGES,
			staticPath: "/"
		}
	})}}

{% endblock %}

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

	{% include "partials/home/hero.njk" %}

	{% include "partials/home/new.njk" %}

	{% include "partials/home/projects.njk" %}

{% endblock %}

{# ========================================================================== #}
{# :: Footer #}
{# ========================================================================== #}
{% block footer %}

	{{footer.default("", {
		disclaimer: ROUTEDATA.DISCLAIMER
	})}}

{% endblock %}
