gitea

Development moved to Codeberg

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
  36. 36
  37. 37
  38. 38
<footer>
	<div class="ui container">
		<div class="ui left">
			{{.i18n.Tr "powered_by" "Gitea"}}
			{{if (or .ShowFooterVersion .PageIsAdmin)}}
				{{.i18n.Tr "version"}}:
				{{if .IsAdmin}}
					<a href="{{AppSubUrl}}/admin/config">{{AppVer}}</a>
				{{else}}
					{{AppVer}}
				{{end}}
			{{end}}
			{{if and .TemplateLoadTimes ShowFooterTemplateLoadTime}}
				{{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong>
				{{.i18n.Tr "template"}}
				{{if .TemplateName}} {{.TemplateName}}{{end}}: <strong>{{call .TemplateLoadTimes}}</strong>
			{{end}}
		</div>
		<div class="ui right 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"}}
				<div class="text">{{.i18n.LangName}}</div>
				<div class="menu language-menu">
					{{range .AllLangs}}
						<a lang="{{.Lang}}" data-url="{{AppSubUrl}}/?lang={{.Lang}}" class="item {{if eq $.i18n.Lang .Lang}}active selected{{end}}">{{.Name}}</a>
					{{end}}
				</div>
			</div>
			<a href="{{AssetUrlPrefix}}/js/licenses.txt">{{.i18n.Tr "licenses"}}</a>
			{{if .EnableSwagger}}<a href="{{AppSubUrl}}/api/swagger">API</a>{{end}}
			<a target="_blank" rel="noopener noreferrer" href="https://gitea.io">{{.i18n.Tr "website"}}</a>
			{{template "custom/extra_links_footer" .}}
		</div>
	</div>
</footer>