summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2023-04-22 16:21:56 +0800
committerGitHub <noreply@github.com>2023-04-22 04:21:56 -0400
commitda4448421e30c2a58095a93e2e5cc4da66fc9347 (patch)
tree79a98f03f119c6e84a73385be2f31f24b750f6fa /templates
parent5ccb626cda8ff6e20cd111e033c4ebc281eec4bf (diff)
downloadgitea-da4448421e30c2a58095a93e2e5cc4da66fc9347.tar.gz
gitea-da4448421e30c2a58095a93e2e5cc4da66fc9347.zip
Fix footer display (#24251) (#24269)
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>
Diffstat (limited to 'templates')
-rw-r--r--templates/base/footer_content.tmpl52
1 files changed, 25 insertions, 27 deletions
diff --git a/templates/base/footer_content.tmpl b/templates/base/footer_content.tmpl
index 53d0a2c77c..aab3657882 100644
--- a/templates/base/footer_content.tmpl
+++ b/templates/base/footer_content.tmpl
@@ -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>