{# ========================================================================== #}
{# :: 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 %}

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

{# ========================================================================== #}
{# :: Settings & variables #}
{# ========================================================================== #}
{% set pageParams = {
	bodyClass: "",
	loadProjectCSS: false,
	loadProjectJS: false
} %}

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

	{{header.default("", {
		nav: { active: "home" }
	})}}

{% 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()}}

{% endblock %}
