mirror of
https://github.com/mastodon/documentation
synced 2025-04-11 22:56:17 +02:00

* Remove GitLab CI configuration As noted by @renchap, "We do not rely on Gitlab CI anymore, this can be dropped." https://github.com/mastodon/documentation/issues/1357#issuecomment-1851642299 * Fix #1357, Use new default branch name "main" This requires changes in * the GitHub Pages deployment config * a few HTML page templates, where the default branch name is included in links to the repo (stylized as "Improve this page" in the English version of the live docs webpage) --------- Co-authored-by: albert <albert.rafetseder+gitlab@univie.ac.at>
29 lines
780 B
HTML
29 lines
780 B
HTML
{{ define "title"}}{{ .Site.Title }}{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ with .Description }}
|
|
<p>{{.}}</p>
|
|
{{ end }}
|
|
|
|
<div class="e-content">
|
|
{{ .Content }}
|
|
|
|
<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 />
|
|
|
|
{{ i18n "otherTranslations" }}
|
|
|
|
{{ range .Translations }}
|
|
<a href="{{ .RelPermalink }}" style="color: #687590;" hreflang="{{ .Lang }}">{{ .Language.LanguageName }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</p>
|
|
|
|
</div>
|
|
{{ end }}
|