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

home.tmpl 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. {{template "base/head" .}}
  2. <div class="repository file list">
  3. {{template "repo/header" .}}
  4. <div class="ui container">
  5. {{template "base/alert" .}}
  6. <div class="ui repo-description">
  7. <div id="repo-desc">
  8. {{if .Repository.DescriptionHTML}}<span class="description has-emoji">{{.Repository.DescriptionHTML}}</span>{{else}}<span class="no-description text-italic">{{.i18n.Tr "repo.no_desc"}}</span>{{end}}
  9. <a class="link" href="{{.Repository.Website}}">{{.Repository.Website}}</a>
  10. </div>
  11. {{if .RepoSearchEnabled}}
  12. <div class="ui repo-search">
  13. <form class="ui form ignore-dirty" action="{{.RepoLink}}/search" method="get">
  14. <div class="field">
  15. <div class="ui action input">
  16. <input name="q" value="{{.Keyword}}" placeholder="{{.i18n.Tr "repo.search.search_repo"}}">
  17. <button class="ui icon button" type="submit">
  18. <i class="search icon"></i>
  19. </button>
  20. </div>
  21. </div>
  22. </form>
  23. </div>
  24. {{end}}
  25. </div>
  26. <div class="ui repo-topic" id="repo-topic">
  27. {{range .Topics}}<div class="ui green basic label topic" style="cursor:pointer;">{{.Name}}</div>{{end}}
  28. {{if .IsRepositoryAdmin}}<a id="manage_topic" style="cursor:pointer;margin-left:10px;">{{.i18n.Tr "repo.topic.manage_topics"}}</a>{{end}}
  29. </div>
  30. {{if .IsRepositoryAdmin}}
  31. <div class="ui repo-topic-edit grid" id="topic_edit" >
  32. <div class="fourteen wide column">
  33. <div class="ui fluid multiple search selection dropdown">
  34. <input type="hidden" name="topics" value="{{range $i, $v := .Topics}}{{.Name}}{{if lt (Add $i 1) (len $.Topics)}},{{end}}{{end}}">
  35. {{range .Topics}}
  36. <a class="ui green basic label topic transition visible" data-value="{{.Name}}" style="display: inline-block !important;">{{.Name}}<i class="delete icon"></i></a>
  37. {{end}}
  38. <div class="text"></div>
  39. </div>
  40. </div>
  41. <div class="one wide column">
  42. <a class="ui compact button primary" href="javascript:;" id="save_topic"
  43. data-link="{{.RepoLink}}/topics">{{.i18n.Tr "repo.topic.done"}}</a>
  44. </div>
  45. </div>
  46. {{end}}
  47. {{template "repo/sub_menu" .}}
  48. <div class="ui stackable secondary menu mobile--margin-between-items mobile--no-negative-margins">
  49. {{if and .PullRequestCtx.Allowed .IsViewBranch}}
  50. <div class="fitted item">
  51. <a href="{{.BaseRepo.Link}}/compare/{{.BaseRepo.DefaultBranch}}...{{.Repository.Owner.Name}}:{{.BranchName}}">
  52. <button class="ui green tiny compact button"><i class="octicon octicon-git-compare"></i></button>
  53. </a>
  54. </div>
  55. {{end}}
  56. {{template "repo/branch_dropdown" .}}
  57. {{ $n := len .TreeNames}}
  58. {{ $l := Subtract $n 1}}
  59. <div class="fitted item"><span class="ui breadcrumb repo-path"><a class="section" href="{{.RepoLink}}/src/{{EscapePound .BranchNameSubURL}}">{{EllipsisString .Repository.Name 30}}</a>{{range $i, $v := .TreeNames}}<span class="divider">/</span>{{if eq $i $l}}<span class="active section">{{EllipsisString $v 30}}</span>{{else}}{{ $p := index $.Paths $i}}<span class="section"><a href="{{EscapePound $.BranchLink}}/{{EscapePound $p}}">{{EllipsisString $v 30}}</a></span>{{end}}{{end}}</span></div>
  60. <div class="right fitted item" id="file-buttons">
  61. {{if .Repository.CanEnableEditor}}
  62. <div class="ui tiny blue buttons">
  63. {{if .CanAddFile}}
  64. <a href="{{.RepoLink}}/_new/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}" class="ui button">
  65. {{.i18n.Tr "repo.editor.new_file"}}
  66. </a>
  67. {{end}}
  68. {{if .CanUploadFile}}
  69. <a href="{{.RepoLink}}/_upload/{{EscapePound .BranchName}}/{{EscapePound .TreePath}}" class="ui button">
  70. {{.i18n.Tr "repo.editor.upload_file"}}
  71. </a>
  72. {{end}}
  73. </div>
  74. {{end}}
  75. </div>
  76. <div class="fitted item">
  77. <!-- Only show clone panel in repository home page -->
  78. {{if eq $n 0}}
  79. <div class="ui action tiny input" id="clone-panel">
  80. {{if not $.DisableHTTP}}
  81. <button class="ui basic clone button" id="repo-clone-https" data-link="{{.CloneLink.HTTPS}}">
  82. {{if UseHTTPS}}HTTPS{{else}}HTTP{{end}}
  83. </button>
  84. {{end}}
  85. {{if and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)}}
  86. <button class="ui basic clone button" id="repo-clone-ssh" data-link="{{.CloneLink.SSH}}">
  87. SSH
  88. </button>
  89. {{end}}
  90. {{if not $.DisableHTTP}}
  91. <input id="repo-clone-url" value="{{$.CloneLink.HTTPS}}" readonly>
  92. {{else if and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH)}}
  93. <input id="repo-clone-url" value="{{$.CloneLink.SSH}}" readonly>
  94. {{end}}
  95. {{if or (not $.DisableHTTP) (and (not $.DisableSSH) (or $.IsSigned $.ExposeAnonSSH))}}
  96. <button class="ui basic icon button poping up clipboard" id="clipboard-btn" data-original="{{.i18n.Tr "repo.copy_link"}}" data-success="{{.i18n.Tr "repo.copy_link_success"}}" data-error="{{.i18n.Tr "repo.copy_link_error"}}" data-content="{{.i18n.Tr "repo.copy_link"}}" data-variation="inverted tiny" data-clipboard-target="#repo-clone-url">
  97. <i class="octicon octicon-clippy"></i>
  98. </button>
  99. {{end}}
  100. <div class="ui basic jump dropdown icon button poping up" data-content="{{.i18n.Tr "repo.download_archive"}}" data-variation="tiny inverted" data-position="top right">
  101. <i class="download icon"></i>
  102. <div class="menu">
  103. <a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.zip"><i class="octicon octicon-file-zip"></i> ZIP</a>
  104. <a class="item" href="{{$.RepoLink}}/archive/{{EscapePound $.BranchName}}.tar.gz"><i class="octicon octicon-file-zip"></i> TAR.GZ</a>
  105. </div>
  106. </div>
  107. </div>
  108. {{end}}
  109. </div>
  110. </div>
  111. {{if .IsViewFile}}
  112. {{template "repo/view_file" .}}
  113. {{else}}
  114. {{template "repo/view_list" .}}
  115. {{end}}
  116. </div>
  117. </div>
  118. {{template "base/footer" .}}