blob: ce35c85337efd83a6c313c8eeb7e6a2b8ab95c2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{{ template "theme/partials/head.html" . }}
<body class="theme-base-0b layout-reverse">
{{ 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>
|