summaryrefslogtreecommitdiffstats
path: root/templates/base/footer_content.tmpl
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2023-04-22 13:58:59 +0800
committerGitHub <noreply@github.com>2023-04-22 01:58:59 -0400
commit7447b39de71bb2dc6a6565c89b2760a373707d2a (patch)
tree72e6855063ed931ef988acc2745914a61b13a7ab /templates/base/footer_content.tmpl
parentfb32b4c5340a1b5934e2a5164b0847265167b8b8 (diff)
downloadgitea-7447b39de71bb2dc6a6565c89b2760a373707d2a.tar.gz
gitea-7447b39de71bb2dc6a6565c89b2760a373707d2a.zip
Fix footer display (#24251)
Fix #24249 Diff with ignoring spaces: https://github.com/go-gitea/gitea/pull/24251/files?diff=split&w=1 Screenshots: <details> <img width="1440" alt="image" src="https://user-images.githubusercontent.com/2114189/233592840-d9ef7296-64eb-4e48-a598-300807a7c2f9.png"> <img width="923" alt="image" src="https://user-images.githubusercontent.com/2114189/233593015-16edc531-43c2-4ff0-b27e-ca75dbadce0c.png"> </details> --------- Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'templates/base/footer_content.tmpl')
-rw-r--r--templates/base/footer_content.tmpl56
1 files changed, 27 insertions, 29 deletions
diff --git a/templates/base/footer_content.tmpl b/templates/base/footer_content.tmpl
index 245a615735..f282083d65 100644
--- a/templates/base/footer_content.tmpl
+++ b/templates/base/footer_content.tmpl
@@ -1,35 +1,33 @@
<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}}
- <div class="ui dropdown upward language">
- <span>{{svg "octicon-globe"}} {{.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>
+ {{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 dropdown upward language">
+ <span>{{svg "octicon-globe"}} {{.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>
- <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>