Add global layout and homepage

This commit is contained in:
Frankie B 2023-06-13 23:07:20 +01:00 committed by Frankie B
commit 168400fab0
33 changed files with 612 additions and 158 deletions

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<!-- HTTPS -->
<head>
@include('includes.head')
</head>
<body>
<div class="page">
<div class="header">
@include('includes.header')
</div> <!-- header -->
<div id="pagebody">
<div id="content">
@yield('content')
</div> <!-- content -->
<div id="footer" class="pagefooter">
@include('includes.footer')
</div> <!-- footer -->
</div> <!-- pagebody -->
</div> <!-- page -->
</body>
</html>