Files
fnx_web/res/template/404.html
2022-06-07 14:43:01 +02:00

31 lines
623 B
HTML

{{define "404"}}<!DOCTYPE html>
<html lang="en">
<head>
{{template "meta_tags" "Not Found"}}
</head>
<body>
{{template "page_top" .}}
<header>
<h1>This page does not exist!</h1>
</header>
<section>
<p>
If you came here by a link from this very same website you can
tell me about it on
<a href="https://twitter.com/Fornax96">twitter</a>.
</p>
<p>
Either way, there's nothing to see here, so you'll have to
<a href='/'>head over to the home page</a>.
</p>
<p>
Bye!
</p>
</section>
{{template "page_bottom" .}}
{{template "analytics"}}
</body>
</html>
{{end}}