about summary refs log tree commit diff stats
path: root/layouts/_default/single.html
blob: bde04ef714466ce5b9a5a50c3a9ad784be30c6c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
<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>

{{- end }}