feat: site admin (#8)

This commit is contained in:
Frankie B 2023-07-16 21:02:51 +01:00 committed by GitHub
commit 2a11cff663
15 changed files with 1378 additions and 52 deletions

View file

@ -0,0 +1,23 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
@include('includes.head')
</head>
<body>
<div class="page">
<div class="header">
@include('includes.admin.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>