20 lines
950 B
Cheetah
20 lines
950 B
Cheetah
<footer class="page-footer" role="group" aria-label="{{ctx.Locale.Tr "aria.footer"}}">
|
|
<div class="left-links" role="contentinfo" aria-label="{{ctx.Locale.Tr "aria.footer.software"}}">
|
|
{{if ShowFooterPoweredBy}}
|
|
<a target="_blank" rel="noopener noreferrer" href="https://about.gitea.com">Gitea v{{AppVer}}</a>
|
|
{{end}}
|
|
</div>
|
|
<div class="right-links" role="group" aria-label="{{ctx.Locale.Tr "aria.footer.links"}}" style="min-width: auto">
|
|
<div class="ui dropdown upward">
|
|
<span class="flex-text-inline">{{svg "octicon-globe" 14}} {{ctx.Locale.LangName}}</span>
|
|
<div class="menu language-menu">
|
|
{{range .AllLangs -}}
|
|
<a lang="{{.Lang}}" data-url="{{AppSubUrl}}/?lang={{.Lang}}" class="item {{if eq ctx.Locale.Lang .Lang}}selected{{end}}">{{.Name}}</a>
|
|
{{end -}}
|
|
</div>
|
|
</div>
|
|
<a href="{{AssetUrlPrefix}}/licenses.txt">{{ctx.Locale.Tr "licenses"}}</a>
|
|
{{template "custom/extra_links_footer" .}}
|
|
</div>
|
|
</footer>
|