1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-10-01 08:40:10 +00:00
jfa-go/data/templates/404.html

22 lines
522 B
HTML
Raw Normal View History

2020-07-29 21:11:28 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>404 - jfa-go</title>
<link rel="stylesheet" type="text/css" href="{{ .cssFile }}">
{{ template "header.html" . }}
2020-07-29 21:11:28 +00:00
<style>
.messageBox {
margin: 20%;
}
</style>
</head>
<body>
<div class="messageBox">
<h1>Page not found.</h1>
<p>
{{ .contactMessage }}
2020-07-29 21:11:28 +00:00
</p>
</div>
</body>
</html>