mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-10-31 23:40:11 +00:00
17 lines
488 B
HTML
17 lines
488 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="{{ .cssClass }}">
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="css/bundle.css">
|
|
{{ template "header.html" . }}
|
|
<title>404 - jfa-go</title>
|
|
</head>
|
|
<body class="section">
|
|
<div class="page-container">
|
|
<h1 class="heading">Page not found.</h1>
|
|
<p class="content">
|
|
{{ .contactMessage }}
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|