From e362b7017516fbc5659dfe9240abf45fb8515bf6 Mon Sep 17 00:00:00 2001 From: jessikitty Date: Wed, 20 May 2026 15:26:22 +1000 Subject: [PATCH] v1.0.0: Display NotFound view --- Views/Display/NotFound.cshtml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Views/Display/NotFound.cshtml diff --git a/Views/Display/NotFound.cshtml b/Views/Display/NotFound.cshtml new file mode 100644 index 0000000..e757cd1 --- /dev/null +++ b/Views/Display/NotFound.cshtml @@ -0,0 +1,28 @@ +@model List +@{ Layout = null; } + + + + + Device Not Found — Sunbeam + + + + +
+

Meow?

+

No kitten found at this address.

+ @if (Model.Any()) { +
Available Kittens:
+
@foreach (var d in Model) { @d.Name
/@d.Slug
}
+ } else {

No devices configured yet.

} +

Go to Admin

+
+ +