您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

header.tmpl 1.7KB

1234567891011121314151617181920212223242526272829
  1. {{with .Repository}}
  2. <div class="ui middle page head grid">
  3. <h2 class="ui left">
  4. <div class="ui breadcrumb">
  5. <i class="mega-octicon octicon-{{if .IsPrivate}}lock{{else if .IsMirror}}repo-clone{{else if .IsFork}}repo-forked{{else}}repo{{end}}"></i>
  6. <a href="{{AppSubUrl}}/{{.Owner.Name}}">{{.Owner.Name}}</a>
  7. <div class="divider"> / </div>
  8. <a href="{{$.RepoLink}}">{{.Name}}</a>
  9. {{if .IsMirror}}<div class="ui label">{{$.i18n.Tr "mirror"}}</div>{{end}}
  10. {{if .IsFork}}<div class="fork-flag">{{$.i18n.Tr "repo.forked_from"}} <a href="{{.BaseRepo.RepoLink}}">{{SubStr .BaseRepo.RepoLink 1 -1}}</a></div>{{end}}
  11. </div>
  12. </h2>
  13. <div class="ui right floated secondary menu">
  14. <a class="ui black basic button" href="{{$.RepoLink}}/action/{{if $.IsWatchingRepo}}un{{end}}watch?redirect_to={{$.Link}}">
  15. <i class="fa fa-eye{{if not $.IsWatchingRepo}}-slash{{end}}"></i>
  16. {{if $.IsWatchingRepo}}{{$.i18n.Tr "repo.unwatch"}}{{else}}{{$.i18n.Tr "repo.watch"}}{{end}} <span class="num">{{.NumWatches}}</span>
  17. </a>
  18. <a class="ui black basic button" href="{{$.RepoLink}}/action/{{if $.IsStaringRepo}}un{{end}}star?redirect_to={{$.Link}}">
  19. <i class="fa fa-star{{if not $.IsStaringRepo}}-o{{end}}"></i>
  20. {{if $.IsStaringRepo}}{{$.i18n.Tr "repo.unstar"}}{{else}}{{$.i18n.Tr "repo.star"}}{{end}} <span class="num">{{.NumStars}}</span>
  21. </a>
  22. <a class="ui black basic button {{if $.IsRepositoryOwner}}poping up{{end}}" {{if not $.IsRepositoryOwner}}href="{{AppSubUrl}}/repo/fork/{{.Id}}"{{end}} {{if $.IsRepositoryOwner}}data-content="{{$.i18n.Tr "repo.fork_from_self"}}"{{end}}>
  23. <i class="octicon octicon-repo-forked"></i>
  24. {{$.i18n.Tr "repo.fork"}} <span class="num">{{.NumForks}}</span>
  25. </a>
  26. </div>
  27. </div>
  28. <div class="ui divider"></div>
  29. {{end}}