documentation/layouts/index.html

29 lines
780 B
HTML
Raw Permalink Normal View History

{{ define "title"}}{{ .Site.Title }}{{ end }}
2018-09-23 02:34:19 +02:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
2018-09-23 02:34:19 +02:00
{{ with .Description }}
<p>{{.}}</p>
{{ end }}
2018-09-23 02:34:19 +02:00
<div class="e-content">
2018-10-06 02:34:46 +02:00
{{ .Content }}
2018-09-23 02:34:19 +02:00
<p style="color: #687590;">
{{ i18n "lastUpdated" }} {{ i18n "lastUpdatedDateFormat" .Lastmod }}{{ with .File }} · <a href='https://github.com/mastodon/documentation/tree/main/content/{{ .Lang }}/{{ .Path }}' style="color: #687590;">{{ i18n "improvePage" }}{{ end }}</a>
{{ if .IsTranslated }}
<br />
2018-09-26 00:35:55 +02:00
{{ i18n "otherTranslations" }}
{{ range .Translations }}
<a href="{{ .RelPermalink }}" style="color: #687590;" hreflang="{{ .Lang }}">{{ .Language.LanguageName }}</a>
{{ end }}
{{ end }}
</p>
2018-09-23 02:34:19 +02:00
</div>
{{ end }}