-
-
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.
Browse files
Browse the repository at this point in the history
Backport #24251 Fix #24249 Diff with ignoring spaces: https://github.com/go-gitea/gitea/pull/24269/files?diff=split&w=1 Manually tested ![image](https://user-images.githubusercontent.com/2114189/233766806-18eb18ad-0c4d-44f7-b0fc-b40466c64445.png) Co-authored-by: Lauris BH <lauris@nix.lv>
- Loading branch information
1 parent
5ccb626
commit da44484
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