blob: 4253035c8ed417e2d2070b8264095cfef26ced2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
{% include title.html %}
{% include meta.html %}
{% include social.html %}
{% include assets.html %}
{% include feed.html %}
{% include favicon.html %}
</head>
<body>
{% include header.html %}
<main class="page-content" aria-label="Content">
<div class="wrapper">
{{ content }}
</div>
</main >
{% include footer.html %}
</body>
</html>
|