clrghouz/resources/views/layouts/app.blade.php

27 lines
590 B
PHP
Raw Normal View History

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">
@yield('content')
2021-06-12 15:14:34 +00:00
</div>
2021-05-03 12:53:40 +00:00
2022-11-05 05:27:31 +00:00
<div id="footer" class="shifted with-sidebar">
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>