clrghouz/resources/views/layouts/auth.blade.php
Deon George 22ba6fe35c
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 30s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m45s
Create Docker Image / Final Docker Image Manifest (push) Successful in 8s
Dont need yield page-scripts here, it is already yield by the include layouts.partials.scripts
2025-05-03 20:59:28 +10:00

21 lines
433 B
PHP

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
@section('htmlheader')
@include('layouts.partials.htmlheader')
@show
<body>
<div id="content">
@yield('content')
</div>
<div id="footer" class="shifted">
@include('layouts.partials.footer')
</div>
{{-- Scripts --}}
@section('scripts')
@include('layouts.partials.scripts')
@show
</body>
</html>