blob: 49b3060483cf8d1229e49d012691c14336ae93fe (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="author" content="Alexander Rees Scerba" />
<title>{{block "title" .}}Page{{end}} - Alex Scerba</title>
<meta name="description" content="{{block "description" .}}Alex's personal site{{end}}" />
<meta name="keywords" content="{{block "keywords" .}}personal site{{end}}">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/static/style.css" />
<link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon" />
</head>
<body>
<input type="checkbox" class="toggler">
<div class="hamburger"><div></div></div>
<nav aria-labelledby="global-navigation" class="menu">
<a href="/">Home</a>
<a href="/projects">Projects</a>
<a href="/blog">Blog</a>
<a href="/about">About</a>
</nav>
<main>
{{ template "main" . }}
</main>
</body>
</html>
|