<!DOCTYPE html>
<html lang="{{ app.request.locale }}">
<head>
<meta charset="UTF-8">
<title>{{ "app_name"|trans() }} - {% block title %}{{ "hello"|trans() }}{% endblock %}</title>
<link rel="shortcut icon" href="{{ asset('build/assets/media/logos/cropped-parking-32x32.png') }}"/>
<link rel="shortcut icon" href="{{ asset('build/assets/media/logos/cropped-parking-192x192.png') }}"/>
{% block stylesheets %}
{# 'app' must match the first argument to addEntry() in webpack.config.js #}
{{ encore_entry_link_tags('app') }}
<!-- Renders a link tag (if your module requires any CSS)
<link rel="stylesheet" href="/build/app.css"> -->
{% endblock %}
</head>
<body class="kt-quick-panel--right kt-demo-panel--right kt-offcanvas-panel--right kt-header--fixed kt-header-mobile--fixed kt-subheader--enabled kt-subheader--fixed kt-subheader--solid kt-aside--enabled kt-aside--fixed kt-page--loading">
<!-- begin:: Page -->
<div class="kt-grid kt-grid--ver kt-grid--root">
<div class="kt-grid kt-grid--hor kt-grid--root kt-login kt-login--v6 kt-login--signin" id="kt_login">
{% block body %} {% endblock %}
</div>
</div>
<!-- end:: Page -->
{% block javascripts %}
<!-- begin::Global Config(global config for global JS sciprts) -->
<script>
var KTAppOptions = {
"colors": {
"state": {
"brand": "#5d78ff",
"dark": "#282a3c",
"light": "#ffffff",
"primary": "#5867dd",
"success": "#34bfa3",
"info": "#36a3f7",
"warning": "#ffb822",
"danger": "#fd3995"
},
"base": {
"label": [
"#c5cbe3",
"#a1a8c3",
"#3d4465",
"#3e4466"
],
"shape": [
"#f0f3ff",
"#d9dffa",
"#afb4d4",
"#646c9a"
]
}
}
};
</script>
<!-- end::Global Config -->
<script>
window.locale = {{ app.request.locale|json_encode|raw }};
</script>
{{ encore_entry_script_tags('app') }}
<!-- Renders app.js & a webpack runtime.js file
<script src="/build/runtime.js"></script>
<script src="/build/app.js"></script> -->
{% endblock %}
</body>
</html>