<!doctype html>
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"><![endif]-->
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]-->
<!--[if IE 8]><html class="no-js lt-ie9" lang="en"><![endif]-->
<!--[if gt IE 8]><!--><html class="no-js" lang="en"><!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{% block metatitle %}{% endblock %} | {{ sitename }}</title>
<meta name="robots" content="index,follow">
<meta name="description" content="{% block metadescription %}{% endblock %}">
{% if app.environment != 'dev' %}
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','{{ gtm_code }}');</script>
<!-- End Google Tag Manager -->
{% endif %}
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="format-detection" content="telephone=no">
<meta name="theme-color" content="{{ theme_colour }}">
<link rel="apple-touch-icon" sizes="180x180" href="/images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/icons/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
{% include '@theme/common/icons.html.twig' %}
{# ADMIN ONLY CSS FILES MERGED INTO SINGLE INCLUDE FILE #}
{% if is_granted('ROLE_CMS_ACCESS') %}
{% include 'Widgets/admin-css-imports.html.twig' %}
{% endif %}
{# WEBPACK COMPILED CSS #}
{{ encore_entry_link_tags('app') }}
{% block stylesheets %}{% endblock %}
<script src="https://kit.fontawesome.com/eace9dba9c.js" crossorigin="anonymous"></script>
{# WEBPACK COMPILED JS - USES DEFER #}
{{ encore_entry_script_tags('app') }}
{% block javascripts %}{% endblock %}
</head>
{% if is_granted('ROLE_CMS_ACCESS') %}
<body class="skin-blue sidebar-collapse sidebar-mini">
{{ render(controller('App\\Controller\\AdminDefaultController::showAdminHeaderAction')) }}
{% else %}
<body {% block bodyattributes %}{% endblock %}>
{% endif %}
{% if app.environment != 'dev' %}
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id={{ gtm_code }}"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
{% endif %}
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- HEADER -->
{% include '@theme/common/site-header.html.twig' %}
{{ renderPcgcComponents('Below Header', pageComponents)|raw }}
{% include '@theme/common/alert-notifications.html.twig' %}
<!-- CONTENT -->
{% block body %}{% endblock %}
{% include '@theme/common/site-footer.html.twig' %}
<script src="{{ asset('/js/modernizr-3.5.0.min.js')}}" defer></script>
<script src="{{ asset('//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.js')}}"></script>
{# <script src="{{ asset('/js/bootstrap.bundle.min.js')}}"></script> #}
{% include 'Widgets/admin-js-imports.html.twig' %}
{% include "@theme/common/consent.html.twig" %}
</body>
</html>