Browse Source

minor fix for #1992

tags/v1.2.0-rc1
Unknwon 9 years ago
parent
commit
94172b13d2
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      modules/bindata/bindata.go
  2. +2
    -2
      templates/base/footer.tmpl

+ 2
- 2
modules/bindata/bindata.go
File diff suppressed because it is too large
View File


+ 2
- 2
templates/base/footer.tmpl View File

@@ -2,7 +2,7 @@
<footer> <footer>
<div class="ui container"> <div class="ui container">
<div class="ui left"> <div class="ui left">
© 2015 Gogs {{ if .ShowFooterVersion }}{{.i18n.Tr "version"}}: {{AppVer}}{{ end }} {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong>
© 2015 Gogs {{if (or .ShowFooterVersion .PageIsAdmin)}}{{.i18n.Tr "version"}}: {{AppVer}}{{end}} {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong>
</div> </div>
<div class="ui right links"> <div class="ui right links">
{{if .ShowFooterBranding}} {{if .ShowFooterBranding}}
@@ -20,7 +20,7 @@
</div> </div>
</div> </div>
<a target="_blank" href="http://gogs.io">{{.i18n.Tr "website"}}</a> <a target="_blank" href="http://gogs.io">{{.i18n.Tr "website"}}</a>
{{ if .ShowFooterVersion }}<span class="version">{{GoVer}}</span>{{ end }}
{{if (or .ShowFooterVersion .PageIsAdmin)}}<span class="version">{{GoVer}}</span>{{end}}
</div> </div>
</div> </div>
</footer> </footer>


Loading…
Cancel
Save