Files
fnx_web/res/template/404.html
2025-09-24 19:40:59 +02:00

27 lines
487 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" .}}
</body>
</html>
{{end}}