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.

repos.tmpl 903 B

9 years ago
3 years ago
9 years ago
10 years ago
9 years ago
123456789101112131415161718192021222324252627282930313233
  1. {{template "base/head_pro" .}}
  2. <div class="explore repositories">
  3. {{template "explore/repo_search" .}}
  4. {{template "explore/repo_orgtop" .}}
  5. <div class="ui container">
  6. <div class="ui grid">
  7. {{template "explore/repo_left" .}}
  8. <div class="ui sixteen wide mobile twelve wide tablet ten wide computer column">
  9. {{template "explore/repo_list" .}}
  10. <div id="app" style="margin-top: 2rem;">
  11. <div class="center">
  12. <el-pagination
  13. background
  14. @current-change="handleCurrentChange"
  15. :current-page="page"
  16. :page-sizes="[20]"
  17. :page-size="20"
  18. layout="total, sizes, prev, pager, next, jumper"
  19. :total="{{.Page.Paginater.Total}}">
  20. </el-pagination>
  21. </div>
  22. </div>
  23. </div>
  24. <div class="computer only ui three wide computer column">
  25. {{template "explore/repo_right" .}}
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. {{template "base/footer" .}}