blob: 116bab4775eee75b7ddb737345da51626a52a0eb (
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="brand center" id="title">{{ page.title | upcase }}</h2>
<h6 class="center">{{ page.date | date_to_long_string | upcase }}</h5>
<br>
<div class="threecol justify">{{ content }}</div>
<p class="right italics">by {{ page.author }}</p>
</div>
</main>
</body>
</html>
|