blob: 5726ce9323df92fc08012a75e81c1daa168c54fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{.Code}} {{.Message}}</title>
<link href="/css/main.css" rel="stylesheet" type="text/css">
<link rel="icon" type="image/png" sizes="48x48" href="/logos/favicon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/logos/favicon32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/logos/favicon16.png">
</head>
<body>
<ul class="topBar">
<li class="topLink"><a href="/">home</a></li>
<li class="topLink"><a href="https://github.com/JacobMcDonnell">github</a></li>
<!--<li class="topLink"><a href="https://jacobmcdonnell.com/articles">articles</a></li>-->
</ul>
<div class="main">
<center>
<h1>{{.Code}} {{.Message}}</h1>
</center>
</div>
<footer class="LicenseFooter">
<p>The content for this site is <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>. The code for this site is <a href="https://opensource.org/license/MIT">MIT</a>.</p>
</footer>
</body>
</html>
|