aboutsummaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: 379bdc535d4dda7af5362a00a527d164c4d65210 (plain) (blame)
1
2
3
4
5
6
7
8
9
{{ define "main" }}
<article>
  <h1>{{ .Title }}</h1>
  <div><time>{{ dateFormat ":date_medium" .Date }}</time></div>
  {{ .Content }}
</article>
<hr style="border-bottom: dotted 1px; border-top: none;" >
<footer>Back to <a href="/Posts">Posts<a></footer>
{{ end }}