mirror of
https://github.com/mastodon/documentation
synced 2025-04-11 22:56:17 +02:00
16 lines
292 B
HTML
16 lines
292 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" }}
|
|
</p>
|
|
</div>
|
|
{{ end }}
|