- Replace two font icons with SVG in the footer - Replace icons in delete modals with SVG - Horizontally center message text in modals
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
| <footer>
 | |
| 	<div class="ui container">
 | |
| 		<div class="ui left">
 | |
| 			{{.i18n.Tr "powered_by" "Gitea"}} {{if (or .ShowFooterVersion .PageIsAdmin)}}{{.i18n.Tr "version"}}: {{AppVer}}{{end}} {{if ShowFooterTemplateLoadTime}}{{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</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">{{.LangName}}</div>
 | |
| 				<div class="menu language-menu">
 | |
| 					{{range .AllLangs}}
 | |
| 						<a lang="{{.Lang}}" data-url="{{AppSubUrl}}/?lang={{.Lang}}" class="item {{if eq $.Lang .Lang}}active selected{{end}}">{{.Name}}</a>
 | |
| 					{{end}}
 | |
| 				</div>
 | |
| 			</div>
 | |
| 			<a href="{{StaticUrlPrefix}}/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" .}}
 | |
| 			{{if (or .ShowFooterVersion .PageIsAdmin)}}<span class="version">{{GoVer}}</span>{{end}}
 | |
| 		</div>
 | |
| 	</div>
 | |
| </footer>
 |