summaryrefslogtreecommitdiff
path: root/_layouts/master.html
blob: b2f445287d6e09df8070b63318e3169ec7c27593 (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
<!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;
        margin: 1rem;
        color: #242424;
      }
      @media (min-width: 40rem) {
        body {
          margin: 5rem auto;
        }
      }
      h1, h2, h3, h4, h5, h6 {
        font-family: sans-serif;
      }
      pre {
        overflow: auto;
      }
    </style>
  </head>
  <body>
    {{ content }}
  </body>
</html>