2023-09-25 11:56:50 +03:00
<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" }} ">
2024-04-03 19:01:50 +03:00
{{ if ShowFooterPoweredBy }}
<a target="_blank" rel="noopener noreferrer" href="https://about.gitea.com"> {{ ctx .Locale .Tr "powered_by" "Gitea" }} </a>
{{ end }}
2023-04-22 08:58:59 +03:00
{{ if ( or .ShowFooterVersion .PageIsAdmin ) }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "version" }} :
2023-04-22 08:58:59 +03:00
{{ if .IsAdmin }}
2024-10-10 07:56:49 +03:00
<a href=" {{ AppSubUrl }} /-/admin/config"> {{ AppVer }} </a>
2023-04-22 08:58:59 +03:00
{{ else }}
{{ AppVer }}
2018-09-07 05:59:06 +03:00
{{ end }}
2023-04-22 08:58:59 +03:00
{{ end }}
{{ if and .TemplateLoadTimes ShowFooterTemplateLoadTime }}
2023-09-25 11:56:50 +03:00
{{ ctx .Locale .Tr "page" }} : <strong> {{ LoadTimes .PageStartTime }} </strong>
{{ ctx .Locale .Tr "template" }} {{ if .TemplateName }} {{ .TemplateName }} {{ end }} : <strong> {{ call .TemplateLoadTimes }} </strong>
2023-04-22 08:58:59 +03:00
{{ end }}
</div>
2023-09-25 11:56:50 +03:00
<div class="right-links" role="group" aria-label=" {{ ctx .Locale .Tr "aria.footer.links" }} ">
2024-11-08 09:04:24 +03:00
<div class="ui dropdown upward">
2023-09-25 15:42:40 +03:00
<span class="flex-text-inline"> {{ svg "octicon-globe" 1 4 }} {{ ctx .Locale .LangName }} </span>
2023-04-22 08:58:59 +03:00
<div class="menu language-menu">
2024-11-08 09:04:24 +03:00
{{ range .AllLangs - }}
<a lang=" {{ .Lang }} " data-url=" {{ AppSubUrl }} /?lang= {{ .Lang }} " class="item {{ if eq ctx .Locale .Lang .Lang }} selected {{ end }} "> {{ .Name }} </a>
{{ end - }}
2018-09-07 05:59:06 +03:00
</div>
</div>
2023-09-25 11:56:50 +03:00
<a href=" {{ AssetUrlPrefix }} /licenses.txt"> {{ ctx .Locale .Tr "licenses" }} </a>
2023-04-22 08:58:59 +03:00
{{ if .EnableSwagger }} <a href=" {{ AppSubUrl }} /api/swagger">API</a> {{ end }}
{{ template "custom/extra_links_footer" . }}
2018-09-07 05:59:06 +03:00
</div>
</footer>