{#
This is the base template used as the application layout which contains the
common elements and decorates all the other templates.
See https://symfony.com/doc/current/book/templating.html#template-inheritance-and-layouts
#}
<!DOCTYPE html>
<html lang="{{ app.request.locale }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
{#instructs web crawlers to not index the page and to not crawl any of the links on the page#}
<meta name="robots" content="noindex, nofollow" />
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('build/images/logo-icon.png') }}">
<title>{% block title %}{{ "MyWLPGA"|trans }}{% endblock %}</title>
{% block stylesheets %}
{#Put scripts here that are common to ALL pages.#}
{# 'base' must match the first argument to addEntry() in webpack.config.js #}
{{ encore_entry_link_tags('base') }}
{# Renders a link tag (if your module requires any CSS):
<link rel="stylesheet" href="/build/base.css">
#}
{% endblock %}
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="{% block body_id %}{% endblock %}" class="{% block body_class %}skin-blue{% endblock %}">
{% block preloader %}
<!-- ============================================================== -->
<!-- Preloader - style you can find in spinners.css -->
<!-- ============================================================== -->
<div class="preloader">
<div class="loader">
<div class="loader__figure"></div>
<p class="loader__label">{{ "Loading..."|trans }}</p>
</div>
</div>
{% endblock %}
{% block header %}
{# <div>MAIN HEADER</div>#}
{% endblock %}
{% block wrapper %}
<div>MAIN WRAPPER - PLEASE OVERRIDE</div>
{% endblock %}
{% block footer %}
{# <div>MAIN FOOTER</div>#}
{% endblock %}
{% block javascripts %}
{#Put scripts here that are common to ALL pages.#}
{# 'base' must match the first argument to addEntry() in webpack.config.js #}
{{ encore_entry_script_tags('base') }}
{# Renders base.js & a webpack runtime.js file:
<script src="/build/runtime.js"></script>
<script src="/build/base.js"></script>
#}
{#<!-- slimscrollbar scrollbar JavaScript -->#}
{#<script src="{{ asset('build/js/perfect-scrollbar.jquery.min.js') }}"></script>#}
{#<!--Wave Effects -->#}
{#<script src="{{ asset('build/js/waves.js') }}"></script>#}
{#<!--Menu sidebar -->#}
{#<script src="{{ asset('build/js/sidebarmenu.js') }}"></script>#}
{#Custom common behaviors here#}
{#<script src="{{ asset('build/js/custom.js') }}"></script>#}
{% endblock %}
</body>
</html>