Files
fnx_web/res/template/404.html

27 lines
487 B
HTML
Raw Normal View History

2018-07-09 21:41:17 +02:00
{{define "404"}}<!DOCTYPE html>
2020-01-17 20:32:21 +01:00
<html lang="en">
2018-07-09 21:41:17 +02:00
<head>
{{template "meta_tags" "Not Found"}}
</head>
<body>
2019-09-17 23:38:40 +02:00
{{template "page_top" .}}
2022-01-11 13:28:22 +01:00
<header>
2022-01-03 14:02:50 +01:00
<h1>This page does not exist!</h1>
2022-01-11 13:28:22 +01:00
</header>
2022-10-11 14:21:06 +02:00
<div id="page_content" class="page_content">
<section>
<p>
2024-11-08 11:10:11 +01:00
There's nothing to see here, so you'll have to
2022-10-11 14:21:06 +02:00
<a href='/'>head over to the home page</a>.
</p>
<p>
Bye!
</p>
</section>
</div>
2020-01-31 19:16:20 +01:00
{{template "page_bottom" .}}
2018-07-09 21:41:17 +02:00
</body>
2020-01-28 12:51:21 +01:00
</html>
2018-07-09 21:41:17 +02:00
{{end}}