25 lines
563 B
PHP
Raw Normal View History

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