2020-01-01 22:37:59 +01:00
|
|
|
{{ define "title"}}{{ .Site.Title }}{{ end }}
|
2018-09-23 02:34:19 +02:00
|
|
|
|
|
|
|
{{ define "main" }}
|
2018-10-06 02:23:56 +02:00
|
|
|
<h1>{{ .Title }}</h1>
|
2018-09-23 02:34:19 +02:00
|
|
|
|
2020-01-01 22:37:59 +01: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
|
|
|
|
2020-01-01 22:37:59 +01:00
|
|
|
<p style="color: #687590;">
|
2020-01-05 22:19:51 +01:00
|
|
|
{{ i18n "lastUpdated" .Lastmod }}{{ with .File }} · <a href='https://github.com/tootsuite/documentation/tree/master/content/{{ .Lang }}/{{ .Path }}' style="color: #687590;">{{ i18n "improvePage" }}{{ end }}</a>
|
2020-01-01 22:37:59 +01:00
|
|
|
|
|
|
|
{{ if .IsTranslated }}
|
|
|
|
<br />
|
2018-09-26 00:35:55 +02:00
|
|
|
|
2020-01-01 22:37:59 +01:00
|
|
|
{{ i18n "otherTranslations" }}
|
|
|
|
|
|
|
|
{{ range .Translations }}
|
|
|
|
<a href="{{ .Permalink }}" style="color: #687590;" hreflang="{{ .Lang }}">{{ .Language.LanguageName }}</a>
|
|
|
|
{{ end }}
|
2018-10-06 02:23:56 +02:00
|
|
|
{{ end }}
|
2020-01-01 22:37:59 +01:00
|
|
|
</p>
|
|
|
|
|
2018-09-23 02:34:19 +02:00
|
|
|
</div>
|
|
|
|
{{ end }}
|