Files
fnx_web/res/template/404.html
2024-11-08 11:10:11 +01:00

28 lines
514 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>
<div id="page_content" class="page_content">
<section>
<p>
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>
</div>
{{template "page_bottom" .}}
{{template "analytics"}}
</body>
</html>
{{end}}