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

23 lines
460 B
PHP
Raw Normal View History

2021-06-13 03:56:27 +00:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
2021-05-03 12:53:40 +00:00
@section('htmlheader')
@include('layouts.partials.htmlheader')
@show
2021-06-13 03:56:27 +00:00
<body>
<div id="content">
2021-05-03 12:53:40 +00:00
@yield('content')
</div>
2021-06-13 03:56:27 +00:00
<div id="footer" class="shifted">
@include('layouts.partials.footer')
</div>
{{-- Scripts --}}
2021-05-03 12:53:40 +00:00
@section('scripts')
2021-06-13 03:56:27 +00:00
@include('layouts.partials.scripts')
@yield('page-scripts')
2021-05-03 12:53:40 +00:00
@show
</body>
</html>