2021-06-12 15:14:34 +00:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
2021-05-03 12:53:40 +00:00
|
|
|
<html lang="en">
|
|
|
|
@section('htmlheader')
|
|
|
|
@include('layouts.partials.htmlheader')
|
|
|
|
@show
|
|
|
|
|
|
|
|
<body>
|
2021-06-12 15:14:34 +00:00
|
|
|
<div id="nav" style="padding-bottom: 5px;">
|
|
|
|
@include('layouts.partials.topmenu')
|
|
|
|
</div>
|
2021-05-03 12:53:40 +00:00
|
|
|
|
2021-06-12 15:14:34 +00:00
|
|
|
<div id="content" class="with-sidebar">
|
2021-06-14 05:46:18 +00:00
|
|
|
@yield('content')
|
2021-06-12 15:14:34 +00:00
|
|
|
</div>
|
2021-05-03 12:53:40 +00:00
|
|
|
|
2021-06-12 15:14:34 +00:00
|
|
|
<div id="footer" class="shifted">
|
2021-05-03 12:53:40 +00:00
|
|
|
@include('layouts.partials.footer')
|
2021-06-12 15:14:34 +00:00
|
|
|
</div>
|
2021-05-03 12:53:40 +00:00
|
|
|
|
2021-06-12 15:14:34 +00:00
|
|
|
{{-- Scripts --}}
|
|
|
|
@section('scripts')
|
|
|
|
@include('layouts.partials.scripts')
|
2021-05-03 12:53:40 +00:00
|
|
|
|
2021-06-12 15:14:34 +00:00
|
|
|
@yield('page-scripts')
|
|
|
|
@show
|
2021-05-03 12:53:40 +00:00
|
|
|
</body>
|
|
|
|
</html>
|