footer.tmpl 1.4 KB

123456789101112131415161718192021222324252627
  1. </div>
  2. <footer class="ui page grid">
  3. <div class="sixteen wide column">
  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. <a target="_blank" href="https://github.com/gogits/gogs"><i class="fa fa-github-square"></i><span class="sr-only">GitHub</span></a>
  9. <a target="_blank" href="https://twitter.com/gogitservice"><i class="fa fa-twitter"></i><span class="sr-only">Twitter</span></a>
  10. <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>
  11. <a target="_blank" href="http://weibo.com/gogschina"><i class="fa fa-weibo"></i><span class="sr-only">Sina Weibo</span></a>
  12. <div class="ui language bottom pointing dropdown link item">
  13. <i class="world icon"></i>
  14. <div class="text">{{.LangName}}</div>
  15. <div class="menu">
  16. {{range .AllLangs}}
  17. <a class="item {{if eq $.Lang .Lang}}active selected{{end}}" href="{{if eq $.Lang .Lang}}#{{else}}{{$.Link}}?lang={{.Lang}}{{end}}">{{.Name}}</a>
  18. {{end}}
  19. </div>
  20. </div>
  21. <a target="_blank" href="http://gogs.io">{{.i18n.Tr "website"}}</a>
  22. <span class="version">{{GoVer}}</span>
  23. </div>
  24. </div>
  25. </footer>
  26. </body>
  27. </html>