summaryrefslogtreecommitdiff
path: root/templates/layouts/default.html
blob: cfb0c17f0d1271a2b7a16f0ef7f307810c18b908 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{{define "base"}}
<!DOCTYPE html>
<html lang="en">

<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta name="description" content="Home for a73x" />
	<meta name="author" content="a73x" />
	<meta name="viewport"
		content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width" />
	<title>a73x</title>
	<style>
		@font-face {
			font-family: 'Mono';
			src: url('./static/V1-ServerMono-Regular.woff2') format('woff2');
			font-weight: normal;
			font-style: normal;
		}

		body {
			font-family: "Mono";
		}

		code {
			font-family: "Mono";
			color: crimson;
			background-color: #f1f1f1;
			padding: 2px;
		}

		nav ul {
			display: flex;
			list-style: none;
		}

		nav ul li {
			margin-right: 20px;
		}
	</style>
</head>

<body>
	{{ template "header.html" . }}
	{{ template "content" . }}
</body>

</html>
{{end}}