footer.tmpl 1.5 KB

1234567891011121314151617181920212223242526272829
  1. </div>
  2. <footer>
  3. <div class="ui container">
  4. <div class="ui left">
  5. © 2015 Gogs · {{.i18n.Tr "version"}}: {{AppVer}} · {{.i18n.Tr "page"}}: <strong>{{LoadTimes .PageStartTime}}</strong> · {{.i18n.Tr "template"}}: <strong>{{call .TmplLoadTimes}}</strong>
  6. </div>
  7. <div class="ui right links">
  8. {{if .ShowFooterBranding}}
  9. <a target="_blank" href="https://github.com/gogits/gogs"><i class="fa fa-github-square"></i><span class="sr-only">GitHub</span></a>
  10. <a target="_blank" href="https://twitter.com/gogitservice"><i class="fa fa-twitter"></i><span class="sr-only">Twitter</span></a>
  11. <a target="_blank" href="https://plus.google.com/communities/115599856376145964459"><i class="fa fa-google-plus"></i><span class="sr-only">Google Plus</span></a>
  12. <a target="_blank" href="http://weibo.com/gogschina"><i class="fa fa-weibo"></i><span class="sr-only">Sina Weibo</span></a>
  13. {{end}}
  14. <div class="ui language bottom pointing slide up dropdown link item">
  15. <i class="world icon"></i>
  16. <div class="text">{{.LangName}}</div>
  17. <div class="menu">
  18. {{range .AllLangs}}
  19. <a class="item {{if eq $.Lang .Lang}}active selected{{end}}" href="{{if eq $.Lang .Lang}}#{{else}}{{$.Link}}?lang={{.Lang}}{{end}}">{{.Name}}</a>
  20. {{end}}
  21. </div>
  22. </div>
  23. <a target="_blank" href="http://gogs.io">{{.i18n.Tr "website"}}</a>
  24. <span class="version">{{GoVer}}</span>
  25. </div>
  26. </div>
  27. </footer>
  28. </body>
  29. </html>