documentation/layouts/_default/single.html

15 lines
407 B
HTML
Raw Normal View History

2018-09-23 00:14:25 +02:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
<aside>{{ .TableOfContents }}</aside>
<div class="e-content">
{{ .Content }}
<p style="color: #687590;">
2018-09-24 01:04:17 +02:00
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>
2018-09-23 00:14:25 +02:00
</p>
</div>
{{ end }}