37 lines
751 B
PHP
37 lines
751 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" name="viewport">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>REKBER</title>
|
|
|
|
@include('layouts.css')
|
|
|
|
@include('layouts.js')
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header class="header-area header-sticky">
|
|
@include('layouts.header')
|
|
</header>
|
|
|
|
<!-- ***** Main Banner Area Start ***** -->
|
|
<main id="main" style="min-height: 100vh;">
|
|
@include('layouts.sidebar')
|
|
@yield('content')
|
|
</main>
|
|
|
|
<!-- End #main -->
|
|
<footer id="footer">
|
|
@include('layouts.footer')
|
|
</footer>
|
|
|
|
@include('layouts.js-bawah')
|
|
|
|
</body>
|
|
|
|
</html>
|