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