all repos — homestead @ 0401e59726d8d87fc7c276bd3733a0bbb0c2b2bf

Code for my website

templates/404.templ (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
package templates

import "website/internal/config"

templ NotFound(config config.Config, path string) {
	@Page(config, PageSettings{
		Title: "Not Found",
		Path:  path,
	}) {
		<h1>404</h1>
		<h2>ʕノ•ᴥ•ʔノ ︵ ┻━┻</h2>
	}
}