-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b00f7c3
commit 8eb234b
Showing
3 changed files
with
59 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,34 @@ | ||
<footer role="group" aria-label="{{.locale.Tr "aria.footer"}}"> | ||
<div class="ui container"> | ||
<div class="ui left" role="contentinfo" aria-label="{{.locale.Tr "aria.footer.software"}}"> | ||
<a target="_blank" rel="noopener noreferrer" href="https://gitea.io">{{.locale.Tr "powered_by" "Gitea"}}</a> | ||
{{if (or .ShowFooterVersion .PageIsAdmin)}} | ||
{{.locale.Tr "version"}}: | ||
{{if .IsAdmin}} | ||
<a href="{{AppSubUrl}}/admin/config">{{AppVer}}</a> | ||
{{else}} | ||
{{AppVer}} | ||
{{end}} | ||
{{end}} | ||
{{if and .TemplateLoadTimes ShowFooterTemplateLoadTime}} | ||
{{.locale.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> | ||
{{.locale.Tr "template"}}{{if .TemplateName}} {{.TemplateName}}{{end}}: <strong>{{call .TemplateLoadTimes}}</strong> | ||
{{end}} | ||
</div> | ||
<div class="ui right links" role="group" aria-label="{{.locale.Tr "aria.footer.links"}}"> | ||
{{if .ShowFooterBranding}} | ||
<a target="_blank" rel="noopener noreferrer" href="https://github.com/go-gitea/gitea">{{svg "octicon-mark-github"}}<span class="sr-only">GitHub</span></a> | ||
<div class="ui left" role="contentinfo" aria-label="{{.locale.Tr "aria.footer.software"}}"> | ||
<a target="_blank" rel="noopener noreferrer" href="https://gitea.io">{{.locale.Tr "powered_by" "Gitea"}}</a> | ||
{{if (or .ShowFooterVersion .PageIsAdmin)}} | ||
{{.locale.Tr "version"}}: | ||
{{if .IsAdmin}} | ||
<a href="{{AppSubUrl}}/admin/config">{{AppVer}}</a> | ||
{{else}} | ||
{{AppVer}} | ||
{{end}} | ||
{{end}} | ||
{{if and .TemplateLoadTimes ShowFooterTemplateLoadTime}} | ||
{{.locale.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> | ||
{{.locale.Tr "template"}}{{if .TemplateName}} {{.TemplateName}}{{end}}: <strong>{{call .TemplateLoadTimes}}</strong> | ||
{{end}} | ||
</div> | ||
<div class="ui right links" role="group" aria-label="{{.locale.Tr "aria.footer.links"}}"> | ||
{{if .ShowFooterBranding}} | ||
<a target="_blank" rel="noopener noreferrer" href="https://github.com/go-gitea/gitea">{{svg "octicon-mark-github"}}<span class="sr-only">GitHub</span></a> | ||
{{end}} | ||
<div class="ui language bottom floating slide up dropdown link item"> | ||
{{svg "octicon-globe"}} | ||
<span>{{.locale.LangName}}</span> | ||
<div class="menu language-menu"> | ||
{{range .AllLangs}} | ||
<a lang="{{.Lang}}" data-url="{{AppSubUrl}}/?lang={{.Lang}}" class="item {{if eq $.locale.Lang .Lang}}active selected{{end}}">{{.Name}}</a> | ||
{{end}} | ||
</div> | ||
<div class="menu language-menu"> | ||
{{range .AllLangs}} | ||
<a lang="{{.Lang}}" data-url="{{AppSubUrl}}/?lang={{.Lang}}" class="item {{if eq $.locale.Lang .Lang}}active selected{{end}}">{{.Name}}</a> | ||
{{end}} | ||
</div> | ||
<a href="{{AssetUrlPrefix}}/js/licenses.txt">{{.locale.Tr "licenses"}}</a> | ||
{{if .EnableSwagger}}<a href="{{AppSubUrl}}/api/swagger">API</a>{{end}} | ||
{{template "custom/extra_links_footer" .}} | ||
</div> | ||
<a href="{{AssetUrlPrefix}}/js/licenses.txt">{{.locale.Tr "licenses"}}</a> | ||
{{if .EnableSwagger}}<a href="{{AppSubUrl}}/api/swagger">API</a>{{end}} | ||
{{template "custom/extra_links_footer" .}} | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters