blob: b59bb38d5b24f5d38fb56684d0710c4262756fc9 (
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
28
29
30
31
32
33
|
<!doctype html>
<html lang="en">
<head>
{{template "_meta.html"}}
<title>{{.Title}}</title>
<meta name="description" content="{{.Description}}">
<meta property="og:title" content="{{.Title}}">
<meta property="og:description" content="{{.Description}}">
</head>
<body>
{{template "_navigation.html"}}
<main class="wrapper">
<article itemtype="http://schema.org/Article">
<header>
<h1 itemtype="headline">{{.Title}}</h1>
<time>{{.CreatedFormatted}}</time>
</header>
<div>
{{.Content}}
</div>
</article>
</main>
{{template "_includes.html"}}
</body>
</html>
|