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 798B

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