blob: e0b2f944601d9ebbea5e9799843c0b0f3185ea64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{{ template "theme/partials/head.html" . }}
<body>
{{ template "theme/partials/sidebar.html" . }}
<div class="content container">
<div class="post">
<h1>{{ .Title }}</h1>
<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
{{ .Content }}
</div>
</div>
</body>
</html>
|