Files
fnx_web/res/template/404.html

31 lines
627 B
HTML
Raw Normal View History

2018-07-09 21:41:17 +02:00
{{define "404"}}<!DOCTYPE html>
<html>
<head>
{{template "meta_tags" "Not Found"}}
{{template "user_style" .}}
2018-07-09 21:41:17 +02:00
</head>
<body>
<div id="body" class="body">
2018-07-09 21:41:17 +02:00
{{template "menu" .}}
2018-07-09 21:41:17 +02:00
<h1>This page does not exist!</h1>
<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>
2018-07-09 21:41:17 +02:00
{{template "footer"}}
</div>
{{template "analytics"}}
</body>
</html>
{{end}}