documentation/layouts/_default/single.html

17 lines
448 B
HTML

{{ 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" }} ·
<a href='https://source.joinmastodon.org/mastodon/docs/tree/master/content/{{.Lang}}/{{.File.Path}}' style="color: #687590;">Improve this page</a>
</p>
</div>
{{ end }}