Add catgirl to 404 page

This commit is contained in:
Joshua Goins 2023-04-12 18:21:07 -04:00
parent 6a5908ac15
commit 6711354629
2 changed files with 5 additions and 2 deletions

BIN
assets/404.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

View file

@ -1,5 +1,8 @@
{{ define "main" }}
<h2>404</h2>
<p style="float: left">Page not found!</p>
<p>Page not found!</p>
{{ with resources.Get "404.webp" }}
{{ $alt_text := "Sakura is confused about where the page went, or maybe where you shouldn't go." }}
<img title="{{ $alt_text }}" alt="{{ $alt_text }}" style="width: 40%; height: auto; float: right" width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}"/>
{{ end }}
{{ end }}