blob: 61d009db9a1b69bdb7e6d0a19ea30f29859e123c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{{ partial "head.html" . }}
<body>
{{ partial "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>
|