blob: a6936cf9a40597e7239f52bf31943163dbe3f8d7 (
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#000000">
<meta name="description" content="{{ page.description }}">
<title>{{ page.title }}</title>
</head>
<body>
{% include header.html %}
<h1>post</h1>
<article>
{{ content }}
</article>
{% include footer.html %}
</body>
</html>
|