You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

footer_content.tmpl 3.1 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <footer>
  2. <div class="ui container">
  3. <div class="ui grid">
  4. <div class="sixteen wide mobile eight wide tablet eight wide computer column">
  5. <div class="ui three column grid">
  6. <div class="column ui vertical text menu">
  7. <div class="header item">{{.i18n.Tr "custom.head.community"}}</div>
  8. <a href="https://www.openi.org.cn/html/Club/2019/0227/14.html" class="item">{{.i18n.Tr "custom.foot.council"}}</a>
  9. <a href="https://www.openi.org.cn/html/Club/2019/0227/14.html" class="item">{{.i18n.Tr "custom.foot.technical_committee"}}</a>
  10. <a href="https://www.openi.org.cn/html/Club/2019/0228/17.html" class="item">{{.i18n.Tr "custom.foot.join"}}</a>
  11. </div>
  12. <div class="column ui vertical text menu">
  13. <div class="header item">{{.i18n.Tr "custom.foot.news"}}</div>
  14. <a href="https://www.openi.org.cn/html/news/dongtai/" class="item">{{.i18n.Tr "custom.foot.community_news"}}</a>
  15. <a href="https://www.openi.org.cn/html/news/huodong/" class="item">{{.i18n.Tr "custom.foot.member_news"}}</a>
  16. <a href="https://www.openi.org.cn/html/news/zixun/" class="item">{{.i18n.Tr "custom.foot.industry_advisory"}}</a>
  17. </div>
  18. <div class="column ui vertical text menu">
  19. <div class="header item">{{.i18n.Tr "custom.foot.help"}}</div>
  20. <div class="ui language bottom floating slide up dropdown link item">
  21. <i class="world icon"></i>
  22. <div class="text">{{.LangName}}</div>
  23. <div class="menu">
  24. {{range .AllLangs}}
  25. <a lang="{{.Lang}}" class="item {{if eq $.Lang .Lang}}active selected{{end}}" href="{{if eq $.Lang .Lang}}#{{else}}{{$.Link}}?lang={{.Lang}}{{end}}">{{.Name}}</a>
  26. {{end}}
  27. </div>
  28. </div>
  29. {{template "custom/extra_links_footer" .}}
  30. </div>
  31. </div>
  32. </div>
  33. <div class="sixteen wide mobile eight wide tablet eight wide computer column" style=" margin:2.0rem 0">
  34. {{.i18n.Tr "custom.foot.copyright"}} <a href="http://www.miitbeian.gov.cn/" target="_blank">京ICP备18004880号</a>
  35. <br>
  36. {{.i18n.Tr "powered_by" "鹏城实验室云脑、Trustie、华为云 DevCloud、gitea"}}
  37. <br>
  38. </div>
  39. </div>
  40. </div>
  41. <div class="ui right links">
  42. {{if .ShowFooterBranding}}
  43. <a target="_blank" rel="noopener noreferrer" href="https://github.com/go-gitea/gitea"><i class="fa fa-github-square"></i><span class="sr-only">GitHub</span></a>
  44. {{end}}
  45. <div class="ui language bottom floating slide up dropdown link item">
  46. <i class="world icon"></i>
  47. <div class="text">{{.LangName}}</div>
  48. <div class="menu">
  49. {{range .AllLangs}}
  50. <a lang="{{.Lang}}" class="item {{if eq $.Lang .Lang}}active selected{{end}}" href="{{if eq $.Lang .Lang}}#{{else}}{{$.Link}}?lang={{.Lang}}{{end}}">{{.Name}}</a>
  51. {{end}}
  52. </div>
  53. </div>
  54. {{if .EnableSwagger}}<a href="{{AppSubUrl}}/api/swagger">API</a>{{end}}
  55. <a target="_blank" rel="noopener noreferrer" href="https://gitea.io">{{.i18n.Tr "website"}}</a>
  56. {{template "custom/extra_links_footer" .}}
  57. {{if (or .ShowFooterVersion .PageIsAdmin)}}<span class="version">{{GoVer}}</span>{{end}}
  58. </div>
  59. </footer>