From 8ff2c46ee885bd066c78d1b28766ab646f430fbb Mon Sep 17 00:00:00 2001 From: jessikitty Date: Wed, 20 May 2026 15:16:40 +1000 Subject: [PATCH] =?UTF-8?q?v1.0.0:=20Admin=20layout=20=E2=80=94=20Sunbeam?= =?UTF-8?q?=20sidebar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Views/Shared/_AdminLayout.cshtml | 82 ++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 Views/Shared/_AdminLayout.cshtml diff --git a/Views/Shared/_AdminLayout.cshtml b/Views/Shared/_AdminLayout.cshtml new file mode 100644 index 0000000..a528321 --- /dev/null +++ b/Views/Shared/_AdminLayout.cshtml @@ -0,0 +1,82 @@ + + + + + + @ViewData["Title"] — Scratching Post + + + + @RenderSection("Styles", required: false) + + +
+ + +
+
+

@ViewData["Title"]

+
+ @RenderSection("HeaderActions", required: false) +
+
+ + @if (TempData["Success"] != null) + { + + } + @if (TempData["Error"] != null) + { + + } + +
+ @RenderBody() +
+
+
+ + + + @RenderSection("Scripts", required: false) + +