<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{{ kernel_service.getApplicationInfoValue("Kernel.Applicationame") }}{% endblock %}</title>
{% block stylesheets %}
{% set favicon = kernel_service.getApplicationInfoValue("Kernel.Favicon") %}
{% if favicon == "" %}
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('templates/img/favicon-32x32.png') }}">
{% else %}
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset(favicon) }}">
{% endif %}
<link href="{{ asset('templates/default/css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ asset('templates/default/font-awesome/css/font-awesome.css') }}" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css" rel="stylesheet" >
<link href="{{ asset('templates/default/css/animate.css') }}" rel="stylesheet">
<link href="{{ asset('templates/default/css/style.css') }}" rel="stylesheet">
<style>
html,
body {
/*css for full size background image*/
background: url({{ asset('templates/default/img/header_two.jpg') }}) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 100%;
}
</style>
{% endblock %}
</head>
<body class="gray-bg">
<div class="middle-box loginscreen animated fadeInDown">
<div>
<div class="ibox-content" style="background-color: #00a79d;">
{% block body %}
{% endblock body %}
</div>
<p class="m-t"> <small>Kreonta BV © 2020</small> </p>
</div>
</div>
{% block javascripts %}
<script src="{{ asset('templates/default/js/jquery-3.1.1.min.js') }}"></script>
<script src="{{ asset('templates/default/js/bootstrap.min.js') }}"></script>
<script src="{{ asset('templates/default/js/plugins/metisMenu/jquery.metisMenu.js') }}"></script>
<script src="{{ asset('templates/default/js/plugins/slimscroll/jquery.slimscroll.min.js') }}"></script>
<script src="{{ asset('templates/default/js/inspinia.js') }}"></script>
<script src="{{ asset('templates/default/js/plugins/pace/pace.min.js') }}"></script>
{% endblock %}
</body>
</html>