blob: 050fd6d85bbc7138bfb1632f2c5174177e079326 (
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>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
{% include header.html %}
</head>
<body>
{% include nav.html %}
<main>
<div class="container">
<h2 class="center" id="title">{{ page.title | upcase }}</h2>
<h6 class="center">{{ page.date | date_to_long_string | upcase }}</h5>
<br>
<div class="twocol justify">{{ content }}</div>
<p class="post-author right">by {{ page.author }}</p>
</div>
</main>
{% include foot.html %}
</body>
</html>
|