27 lines
487 B
HTML
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}}
|