mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
4562f674b2
(cherry picked from commit8b9237e47e
) (cherry picked from commit47e5543f33
) (cherry picked from commit456abff8c0
) (cherry picked from commit2d2588187e
) (cherry picked from commita81e4e2588
) (cherry picked from commit70c4ee8fba
) (cherry picked from commitf12b0577e8
) (cherry picked from commit025e6e1974
) (cherry picked from commite051684c83
) (cherry picked from commitee370f3f3c
) (cherry picked from commita1b53a8b88
) (cherry picked from commite01158af9b
) (cherry picked from commitc9f6b6c8a1
) (cherry picked from commit6abaa468d5
) (cherry picked from commitd039148bc8
) (cherry picked from commitd3aadcac8b
) (cherry picked from commite739f46aae
) (cherry picked from commit228671e723
) (cherry picked from commit8965f9bdf2
) (cherry picked from commit5e97896da3
) (cherry picked from commitdf8bdce12a
) (cherry picked from commit33ecf86e42
) (cherry picked from commit038ac822db
) (cherry picked from commit6decbafd3a
) (cherry picked from commitad2b719be5
) (cherry picked from commitd9b2f11a7b
) (cherry picked from commit1020333462
) (cherry picked from commitc1279c7d45
) (cherry picked from commita0dfccbba4
) Conflicts: templates/base/footer_content.tmpl https://codeberg.org/forgejo/forgejo/pulls/1420 (cherry picked from commit9651bcf9c6
) (cherry picked from commit73cd49d3e5
) (cherry picked from commitc4778ed2ec
) (cherry picked from commitca0bd91ab7
) (cherry picked from commite3720f5b13
) (cherry picked from commite951185ce1
) (cherry picked from commit3f469c9635
) (cherry picked from commit6a1fbb01c8
) (cherry picked from commitddb426df04
) (cherry picked from commitfe9e0d6083
)
30 lines
1.4 KiB
Go HTML Template
30 lines
1.4 KiB
Go HTML Template
<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"}}">
|
|
<a target="_blank" rel="noopener noreferrer" href="https://forgejo.org">{{ctx.Locale.Tr "powered_by" "Forgejo"}}</a>
|
|
{{if (or .ShowFooterVersion .PageIsAdmin)}}
|
|
{{ctx.Locale.Tr "version"}}:
|
|
{{if .IsAdmin}}
|
|
<a href="{{AppSubUrl}}/admin/config">{{AppVer}}</a>
|
|
{{else}}
|
|
{{AppVer}}
|
|
{{end}}
|
|
{{end}}
|
|
{{if and .TemplateLoadTimes ShowFooterTemplateLoadTime}}
|
|
{{ctx.Locale.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong>
|
|
{{ctx.Locale.Tr "template"}}{{if .TemplateName}} {{.TemplateName}}{{end}}: <strong>{{call .TemplateLoadTimes}}</strong>
|
|
{{end}}
|
|
</div>
|
|
<div class="right-links" role="group" aria-label="{{ctx.Locale.Tr "aria.footer.links"}}">
|
|
<div class="ui dropdown upward language">
|
|
<span class="flex-text-inline">{{svg "octicon-globe" 14}} {{ctx.Locale.LangName}}</span>
|
|
<div class="menu language-menu">
|
|
{{range .AllLangs}}
|
|
<a lang="{{.Lang}}" data-url="{{AppSubUrl}}/?lang={{.Lang}}" class="item {{if eq ctx.Locale.Lang .Lang}}active selected{{end}}">{{.Name}}</a>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
<a href="{{AssetUrlPrefix}}/licenses.txt">{{ctx.Locale.Tr "licenses"}}</a>
|
|
{{if .EnableSwagger}}<a href="{{AppSubUrl}}/api/swagger">API</a>{{end}}
|
|
{{template "custom/extra_links_footer" .}}
|
|
</div>
|
|
</footer>
|