all repos — archive/hugo-xmin @ 111767700619c5184943b1cb3dff3f7e195c2e85

Customised minimal hugo theme

layouts/_default/single.html (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
{{ partial "header.html" . }}
<div class="article-meta">
<h1><span class="title">{{ .Title }}</span></h1>
{{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }}
{{ if .Params.date }}<h2 class="date">{{ $.Date.Format "2006/01/02" }}</h2>{{ end }}
</div>

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

{{ partial "footer.html" . }}