Add 404 page

This commit is contained in:
Elnu 2023-07-24 13:49:28 -07:00
parent 33ecd1a539
commit dee29d1277
2 changed files with 26 additions and 1 deletions

11
dict/templates/404.html Normal file
View file

@ -0,0 +1,11 @@
{{- define "title" }}404 Not Found - {{ template "sitetitle" . }}{{- end -}}
{{- define "results" -}}
<div class="center">
<br>
<h1>404 Not Found</h1>
<p>Looks like this page doesn't exist?</p>
</div>
{{- end -}}
{{- template "index" . -}}