<!DOCTYPE html>
{% set isCloud = app.request.server.get('APP_CLOUD') %}
<html lang="{{ app.request.locale }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>EdgeConn {{ isCloud ? "Cloud" : "4.0" }} | {{ page|default("") }}</title>
{# <link rel="shortcut icon" href="{{ asset('assets/images/icon.ico') }}" /> #}
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('assets/images/favicon_32x32.png') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('assets/images/favicon_16x16.png') }}">
<link rel="apple-touch-icon" sizes="128x128" href="{{ asset('assets/images/tosca/EdgeConn_128x128.png') }}">
{# <!-- Google Font: Source Sans Pro --> #}
{# <link rel="stylesheet" #}
{# href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback"> #}
{# <link rel="stylesheet" #}
{# href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,700&display=fallback"> #}
<!-- Font Awesome -->
<link rel="stylesheet" href="{{ asset('assets/plugins/fontawesome-free/css/all.min.css') }}">
<link rel="stylesheet" href="{{ asset('assets/plugins/icheck-bootstrap/icheck-bootstrap.min.css') }}">
<!-- Theme style -->
<link rel="stylesheet" href="{{ asset('assets/base/css/adminlte.min.css') }}">
<link rel="manifest" href="{{ asset('assets/manifest.json') }}">
<style>
body {
font-family: "Open Sans", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
</style>
{% block stylesheets %}
{% endblock %}
</head>
<body class="{{ bodyClass }}" cz-shortcut-listen="true" style="min-height: 466px;">
{% block body %}
{% endblock %}
<!-- jQuery -->
<script src="{{ asset('assets/plugins/jquery/jquery.min.js') }}"></script>
<!-- Bootstrap 4 -->
<script src="{{ asset('assets/plugins/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
<!-- AdminLTE App -->
<script src="{{ asset('assets/base/js/adminlte.min.js') }}"></script>
{% block javascripts %}{% endblock %}
</body>
</html>