45 lines
1.7 KiB
PHP
45 lines
1.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<title>@yield('title')</title>
|
|
<meta content='width=device-width, initial-scale=1.0, shrink-to-fit=no' name='viewport' />
|
|
<link rel="icon" type="image/x-icon"/>
|
|
|
|
<!-- Fonts and icons -->
|
|
<script src="{{ asset('template/assets/js/plugin/webfont/webfont.min.js') }}"></script>
|
|
<script>
|
|
WebFont.load({
|
|
google: {"families":["Lato:300,400,700,900"]},
|
|
custom: {"families":["Flaticon", "Font Awesome 5 Solid", "Font Awesome 5 Regular", "Font Awesome 5 Brands", "simple-line-icons"], urls: ["{{ asset('template/assets/css/fonts.min.css') }}"]},
|
|
active: function() {
|
|
sessionStorage.fonts = true;
|
|
}
|
|
});
|
|
</script>
|
|
<!-- CSS Files -->
|
|
<link rel="stylesheet" href="{{ asset('template/assets/css/bootstrap.min.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('template/assets/css/atlantis.min.css') }}">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-alpha3/dist/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.min.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
@include('partials.header')
|
|
@include('partials.sidebar')
|
|
@yield('modal')
|
|
<div class="main-panel">
|
|
<div class="content">
|
|
<div class="page-inner">
|
|
@yield('content')
|
|
</div>
|
|
</div>
|
|
@include('partials.footer')
|
|
</div>
|
|
</div>
|
|
@include('partials.scripts')
|
|
@stack('extraScript')
|
|
@include('sweetalert::alert')
|
|
</body>
|
|
</html> |