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

navbar.tmpl 878B

123456789101112131415161718
  1. <div class="ui secondary pointing tabular top attached borderless menu new-menu navbar">
  2. <a class="{{if .PageIsExploreRepositories}}active {{end}}item" href="{{AppSubUrl}}/explore/repos">
  3. {{svg "octicon-repo"}} {{.locale.Tr "explore.repos"}}
  4. </a>
  5. {{if not .UsersIsDisabled}}
  6. <a class="{{if .PageIsExploreUsers}}active {{end}}item" href="{{AppSubUrl}}/explore/users">
  7. {{svg "octicon-person"}} {{.locale.Tr "explore.users"}}
  8. </a>
  9. {{end}}
  10. <a class="{{if .PageIsExploreOrganizations}}active {{end}}item" href="{{AppSubUrl}}/explore/organizations">
  11. {{svg "octicon-organization"}} {{.locale.Tr "explore.organizations"}}
  12. </a>
  13. {{if and (not $.UnitTypeCode.UnitGlobalDisabled) .IsRepoIndexerEnabled}}
  14. <a class="{{if .PageIsExploreCode}}active {{end}}item" href="{{AppSubUrl}}/explore/code">
  15. {{svg "octicon-code"}} {{.locale.Tr "explore.code"}}
  16. </a>
  17. {{end}}
  18. </div>