blob: 69decb3bb2080458f3fff6ae25186e12cd202972 (
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>
<title>{{ page.title }}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="alternate" type="application/atom+xml" title="benburwell.com blog posts" href="/feed.xml">
<meta name="author" content="Ben Burwell">
<style>
body {
max-width: 40rem;
padding: 1rem;
margin: auto;
color: #242424;
}
h1, h2, h3, h4, h5, h6 {
font-family: sans-serif;
}
pre {
overflow: auto;
}
</style>
</head>
<body>
{{ content }}
</body>
</html>
|