documentation/layouts/_default/single.html

16 lines
292 B
HTML
Raw Normal View History

2018-09-23 00:14:25 +02:00
{{ define "title"}} {{ .Title}} {{end}}
{{ define "main" }}
<h1>{{ .Title }}</h1>
<aside>{{ .TableOfContents }}</aside>
<div class="e-content">
{{ .Content }}
<p style="color: #687590;">
Last updated {{ .Lastmod.Format "January 2, 2006" }}
</p>
</div>
{{ end }}