-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.06 KB
/
index.html
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
{{define "index"}}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>beeceej.com</title>
<meta name="author" content="beeceej">
<meta name="beeceej" content="beceej.com">
<meta name="description" content="{{.Description}}">
<meta name="brian jones" content="beeceej">
<meta name="keywords" content="{{JoinStr .Keywords ", "}}">
<link rel="stylesheet" href="/index.css">
<link rel="shortcut icon" href="/favicon.png">
<link rel="apple-touch-icon" href="/favicon.png">
</head>
<body>
{{- template "nav" . -}}
{{if eq .PageID "about"}}
{{- template "about" . -}}
{{end}}
{{if eq .PageID "contact"}}
{{- template "contact" . -}}
{{end}}
{{if eq .PageID "notes-l"}}
{{- template "notes-l" . -}}
{{end}}
{{if eq .PageID "notes-note"}}
{{- template "notes-note" . -}}
{{end}}
{{if eq .PageID "error"}}
{{- template "error" . -}}
{{end}}
{{- template "footer" . -}}
</body>
<script>
{{- template "common-js" . -}}
</script>
</html>
{{end}}
{{- template "index" . -}}