blob: c5f959c505b76971d2f74367dd84faf5e6fab9d8 (
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
|
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/css/main.css">
</head>
<body>
<div class="wrap">
<header class="masthead">
<div class="container">
<h3 class="masthead-title">
<a href="/" title="Home">{{ site.title | newline_to_br }}</a>
<br><small>{{ site.tagline }}</small>
</h3>
</div>
</header>
<main class="container" id="main">
{{ content }}
</main>
</div>
</body>
</html>
|