aboutsummaryrefslogtreecommitdiff
path: root/resources/views/layouts
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-07-16 21:02:51 +0100
committerGitHub <noreply@github.com>2023-07-16 21:02:51 +0100
commit7c16dc53b55aa50d6c9ac0bdea2f51fbbf2b20b0 (patch)
treed81c7682b4696d4182ab375d64fa69c4ff755647 /resources/views/layouts
parent691d0d933d9c2d9289fa01c7153371e45998ac53 (diff)
feat: site admin (#8)
Diffstat (limited to 'resources/views/layouts')
-rw-r--r--resources/views/layouts/default-admin.blade.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/resources/views/layouts/default-admin.blade.php b/resources/views/layouts/default-admin.blade.php
new file mode 100644
index 0000000..5a16524
--- /dev/null
+++ b/resources/views/layouts/default-admin.blade.php
@@ -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>