71 lines
3.0 KiB
Twig
71 lines
3.0 KiB
Twig
<!DOCTYPE html>
|
|
<!--[if IE 8]> <html lang="{{ cms_locale() }}" class="ie8 no-js"> <![endif]-->
|
|
<!--[if IE 9]> <html lang="{{ cms_locale() }}" class="ie9 no-js"> <![endif]-->
|
|
<!--[if !IE]><!-->
|
|
<html lang="{{ cms_locale() }}">
|
|
<!--<![endif]-->
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block page_title %}{% endblock page_title %}</title>
|
|
{% block meta %}
|
|
<link rel="shortcut icon" href="{{ cms_setting('branding-favicon')|default('')|raw }}">
|
|
<link rel="icon" type="image/x-icon" href="{{ cms_setting('branding-favicon')|default('')|raw }}">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0">
|
|
{% if block('head_description') %}
|
|
<meta name="description" content="{% block head_description %}{% endblock %}" >
|
|
{% endif %}
|
|
{% endblock meta %}
|
|
{% block meta_robots %}
|
|
<meta name="robots" content="index,follow">
|
|
{% endblock meta_robots %}
|
|
|
|
{%- include '@cms_bundle/snippets/breadcrumbs.html.twig' -%}
|
|
{% block stylesheets %}{% endblock stylesheets %}
|
|
|
|
{% block default_head_javascripts %}{% endblock default_head_javascripts %}
|
|
{% block head_javascripts %}{% endblock head_javascripts %}
|
|
|
|
{% block gtm_head_part %}{% endblock gtm_head_part %}
|
|
</head>
|
|
{% block body %}
|
|
<body id="page-top" class="{% block body_class %}{% endblock %}">
|
|
{% block gtm_body_part %}{% endblock %}
|
|
{% block nav %}
|
|
{% block navbar %}{% endblock %}
|
|
{% endblock %}
|
|
{% block page_wrapper %}
|
|
<div id="wrapper">
|
|
{% block page_wrapper_content %}
|
|
{% block content_wrapper %}
|
|
<!-- Content Wrapper -->
|
|
<div id="content-wrapper" class="d-flex flex-column">
|
|
{% block content_wrapper_content %}
|
|
<!-- Main Content -->
|
|
{% block content_breadcrumbs %}{% endblock %}
|
|
{% block main_content_body %}
|
|
{% block main_content_title %}{% endblock main_content_title %}
|
|
{% block main_content %}{% endblock main_content %}
|
|
{% endblock %}
|
|
|
|
<!-- End of Main Content -->
|
|
{% endblock content_wrapper_content %}
|
|
</div>
|
|
<!-- End of Content Wrapper -->
|
|
{% endblock content_wrapper %}
|
|
{% endblock page_wrapper_content %}
|
|
</div>
|
|
{% endblock page_wrapper %}
|
|
<!-- bottom footer -->
|
|
{% block above_footer %}{% endblock %}
|
|
|
|
{% block footer_wrapper %}
|
|
{% block footer_content %}{% endblock footer_content %}
|
|
{% endblock footer_wrapper %}
|
|
<!-- /bottom footer -->
|
|
{% block default_footer_javascripts %}{% endblock default_footer_javascripts %}
|
|
{% block footer_javascripts %}{% endblock footer_javascripts %}
|
|
</body>
|
|
{% endblock body %}
|
|
</html> |