{# ========================================================================== #}
{# :: Page head (insert before body) #}
{# ========================================================================== #}
<head>
	<meta charset="utf-8"/>

	{# Page title #}
	<title>{{CONFIG.app.name}}</title>

	{# Meta tags #}
	<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
	<meta name="description" content="{{CONFIG.app.description}}"/>
	<meta name="robots" content="noodp, noydir"/>
	<meta name="viewport" content="width=device-width, initial-scale=1.0"/>

	{# Favicon #}
	<link rel="shortcut icon" href="{{CONFIG.app.favicon}}">

	{# Vendors #}
	{% for vendor in styleVendors %}
		<link rel="stylesheet" href="{{vendor}}" />
	{% endfor %}

	{# Core css #}
	<link rel="stylesheet" href="/css/core.min.css" />

	{# Overwrite css #}
	{% if CONFIG.styles.overwrite %}
		<link rel="stylesheet" href="{{CONFIG.styles.overwrite}}" />
	{% endif %}

	{# Project css #}
	{% if pageParams.loadProjectCSS and ROUTEDATA.CATEGORY %}
		<link rel="stylesheet" href="/css/{{ROUTEDATA.CATEGORY | lower}}.min.css" />
	{% endif %}
</head>
