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.

navbar.tmpl 836B

123456789101112131415161718
  1. <div class="ui secondary pointing tabular top attached borderless stackable menu new-menu navbar">
  2. <a class="{{if .PageIsExploreRepositories}}active{{end}} item" href="{{AppSubUrl}}/explore/repos">
  3. {{svg "octicon-repo"}} {{.i18n.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"}} {{.i18n.Tr "explore.users"}}
  8. </a>
  9. {{end}}
  10. <a class="{{if .PageIsExploreOrganizations}}active{{end}} item" href="{{AppSubUrl}}/explore/organizations">
  11. {{svg "octicon-organization"}} {{.i18n.Tr "explore.organizations"}}
  12. </a>
  13. {{if .IsRepoIndexerEnabled}}
  14. <a class="{{if .PageIsExploreCode}}active{{end}} item" href="{{AppSubUrl}}/explore/code">
  15. {{svg "octicon-code"}} {{.i18n.Tr "explore.code"}}
  16. </a>
  17. {{end}}
  18. </div>