about summary refs log tree commit diff stats
path: root/themes/xmin/layouts/_default/single.html
blob: de3f12181fbd1defaf7b762b75f3fbedf82bf97a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ partial "header.html" . }}
<div class="article-meta">
<h1><span class="title">{{ .Title | markdownify }}</span></h1>
{{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }}
{{ if (gt .Params.date 0) }}<h2 class="date">{{ .Date.Format "2006/01/02" }}</h2>{{ end }}
</div>

<main>
{{ .Content }}
</main>

{{ partial "footer.html" . }}