feat: Light mode default, auth, Posts rename, display scaling, TinyMCE improvements
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Device Not Found — Sunbeam</title>
|
||||
<title>Post Not Found — Sunbeam</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
|
||||
<style>
|
||||
body { background: #0f0f1a; color: #e0e0e0; min-height: 100vh; display: flex; align-items: center; justify-content: center; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
|
||||
@@ -17,9 +17,9 @@
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Meow?</h1>
|
||||
<p class="text-muted mb-4">No kitten found at this address.</p>
|
||||
<p class="text-muted mb-4">No post found at this address.</p>
|
||||
@if (Model.Any()) {
|
||||
<h5 class="mb-3">Available Kittens:</h5>
|
||||
<h5 class="mb-3">Available Posts:</h5>
|
||||
<div class="device-list">@foreach (var d in Model) { <a href="/@d.Slug"><strong>@d.Name</strong><br /><code>/@d.Slug</code></a> }</div>
|
||||
} else { <p>No devices configured yet.</p> }
|
||||
<p class="mt-4"><a href="/admin" class="btn btn-outline-light btn-sm">Go to Admin</a></p>
|
||||
|
||||
Reference in New Issue
Block a user