blob: f627d2d80047303c8764f005d47c934deddb3190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{{ 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>
|