You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.7 KiB
83 lines
2.7 KiB
<!DOCTYPE html> |
|
<html lang="en"> |
|
<title>@yield('title')</title> |
|
|
|
<head> |
|
<meta charset="utf-8"> |
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
|
<meta name="description" content=""> |
|
<meta name="author" content=""> |
|
<title>SB Admin 2 - Dashboard</title> |
|
@include('layouts.link') |
|
</head> |
|
|
|
<body id="page-top"> |
|
@stack('style') |
|
<!-- Page Wrapper --> |
|
<div id="wrapper"> |
|
<!-- Sidebar --> |
|
@include('layouts.sidebar') |
|
|
|
<!-- Content Wrapper --> |
|
<div id="content-wrapper" class="d-flex flex-column"> |
|
|
|
<!-- Main Content --> |
|
<div id="content"> |
|
<!-- Topbar --> |
|
@include('layouts.navbar') |
|
|
|
<!-- Begin Page Content --> |
|
<div class="container-fluid"> |
|
@yield('content') |
|
</div> |
|
<!-- /.container-fluid --> |
|
|
|
</div> |
|
<!-- End of Main Content --> |
|
|
|
<!-- Footer --> |
|
<footer class="sticky-footer bg-white"> |
|
<div class="container my-auto"> |
|
<div class="copyright text-center my-auto"> |
|
<span>Copyright © Your Website 2021</span> |
|
</div> |
|
</div> |
|
</footer> |
|
<!-- End of Footer --> |
|
|
|
</div> |
|
<!-- End of Content Wrapper --> |
|
|
|
</div> |
|
<!-- End of Page Wrapper --> |
|
|
|
<!-- Scroll to Top Button--> |
|
<a class="scroll-to-top rounded" href="#page-top"> |
|
<i class="fas fa-angle-up"></i> |
|
</a> |
|
|
|
<!-- Logout Modal--> |
|
<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" |
|
aria-hidden="true"> |
|
<div class="modal-dialog" role="document"> |
|
<div class="modal-content"> |
|
<div class="modal-header"> |
|
<h5 class="modal-title" id="exampleModalLabel">Ready to Leave?</h5> |
|
<button class="close" type="button" data-dismiss="modal" aria-label="Close"> |
|
<span aria-hidden="true">×</span> |
|
</button> |
|
</div> |
|
<div class="modal-body">Select "Logout" below if you are ready to end your current session.</div> |
|
<div class="modal-footer"> |
|
<button class="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button> |
|
<a class="btn btn-primary" href="{{ url('/login') }}">Logout</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
@include('layouts.script') |
|
</body> |
|
|
|
</html>
|
|
|