Add basic 404 handling

This commit is contained in:
Dominic Ferrando
2025-04-24 21:50:37 -04:00
parent da518d7a12
commit e616fafc64
2 changed files with 33 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
package views
templ NotFound() {
<div class="container not-found">
<h1>404</h1>
<p>Comfychan couldnt find that page.</p>
<img src="/static/media/comfy-404.png" alt="404 mascot"/>
</div>
}