From 2844904723a119cc56fb7d020e73a09b3a5c8cf8 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Fri, 11 Aug 2023 14:27:38 +0100 Subject: [PATCH] fix: add missing _ViewStart to inherit shared layout --- OliverBooth/Areas/Blog/Pages/_ViewStart.cshtml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 OliverBooth/Areas/Blog/Pages/_ViewStart.cshtml diff --git a/OliverBooth/Areas/Blog/Pages/_ViewStart.cshtml b/OliverBooth/Areas/Blog/Pages/_ViewStart.cshtml new file mode 100644 index 0000000..1af6e49 --- /dev/null +++ b/OliverBooth/Areas/Blog/Pages/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "_Layout"; +} \ No newline at end of file