35 lines
778 B
PHP
35 lines
778 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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>@yield('title')</title>
|
|
|
|
{{-- style --}}
|
|
@stack('prepend-style')
|
|
@include('includes.style')
|
|
@stack('addon-style')
|
|
</head>
|
|
|
|
<body>
|
|
{{-- navbar --}}
|
|
{{-- @include('includes.navbar-auth') --}}
|
|
{{-- page content --}}
|
|
@yield('content')
|
|
|
|
{{-- footer --}}
|
|
{{-- @include('includes.footer') --}}
|
|
|
|
|
|
|
|
<!-- Bootstrap core JavaScript -->
|
|
@stack('prepend-script')
|
|
@include('includes.script')
|
|
@stack('addon-script')
|
|
</body>
|
|
</html>
|