footer.tmpl 1.7 KB

123456789101112131415161718192021222324252627282930313233343536
  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></a>
  9. <a target="_blank" href="https://twitter.com/gogitservice"><i class="fa fa-twitter"></i></a>
  10. <a target="_blank" href="https://plus.google.com/communities/115599856376145964459"><i class="fa fa-google-plus"></i></a>
  11. <a target="_blank" href="http://weibo.com/gogschina"><i class="fa fa-weibo"></i></a>
  12. <!-- <div id="footer-lang" class="inline drop drop-top">{{.i18n.Tr "language"}}
  13. <div class="drop-down">
  14. <ul class="menu menu-vertical switching-list">
  15. {{range .AllLangs}}
  16. <li><a href="{{if eq $.Lang .Lang}}#{{else}}{{$.Link}}?lang={{.Lang}}{{end}}">{{.Name}}</a></li>
  17. {{end}}
  18. </ul>
  19. </div>
  20. </div> -->
  21. <div class="ui language bottom pointing dropdown link item">
  22. <i class="world icon"></i>
  23. <div class="text">{{.LangName}}</div>
  24. <div class="menu">
  25. {{range .AllLangs}}
  26. <a class="item {{if eq $.Lang .Lang}}active selected{{end}}" href="{{if eq $.Lang .Lang}}#{{else}}{{$.Link}}?lang={{.Lang}}{{end}}">{{.Name}}</a>
  27. {{end}}
  28. </div>
  29. </div>
  30. <a target="_blank" href="http://gogs.io">{{.i18n.Tr "website"}}</a>
  31. <span class="version">{{GoVer}}</span>
  32. </div>
  33. </div>
  34. </footer>
  35. </body>
  36. </html>