all repos — homestead @ 8688a232f5958adbdfd36cdbaec68ecab56aaea1

Code for my website

switch to templ for rendering HTML templates

Alan Pearce
commit

8688a232f5958adbdfd36cdbaec68ecab56aaea1

parent

b0b6eacca2cfd0d39f77687a7787543db9833cd1

1 file changed, 13 insertions(+), 0 deletions(-)

changed files
A internal/builder/404.templ
@@ -0,0 +1,13 @@
+package builder + +import "website/internal/config" + +templ notFound(config config.Config, path string) { + @page(config, PageSettings{ + Title: "Not Found", + Path: path, + }) { + <h1>404</h1> + <h2>ʕノ•ᴥ•ʔノ ︵ ┻━┻</h2> + } +}