-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.gohtml
60 lines (53 loc) · 1.2 KB
/
base.gohtml
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
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@font-face {
font-family: 'Gotham Round';
font-style: normal;
src: url("../assets/gothamrnd.otf") format("opentype");
}
* {
box-sizing: border-box;
}
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: 'Gotham Round', system-ui;
}
body {
display: flex;
flex-direction: column;
}
h1 {
margin: 0;
font-size: 40px;
text-transform: uppercase;
font-weight: bolder;
}
.page {
width: 100%;
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
overflow: hidden;
}
.container {
height: 100%;
width: 100%;
padding: 0 10px;
}
</style>
</head>
<body>
<div class="page">
{{ template "page" . }}
</div>
{{ template "pages" . }}
{{ template "gen-time" }}
</body>
</html>