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

navbar.tmpl 1.9 kB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <div class="tablet only mobile only sixteen wide mobile sixteen wide tablet column row">
  2. <div class="ui secondary pointing tabular top attached borderless menu navbar">
  3. <a class="{{if .PageIsExploreRepositories}}active{{end}} item" href="{{AppSubUrl}}/explore/repos">
  4. {{svg "octicon-repo" 16}} {{.i18n.Tr "explore.repos"}}
  5. </a>
  6. <a class="{{if .PageIsExploreUsers}}active{{end}} item" href="{{AppSubUrl}}/explore/users">
  7. {{svg "octicon-person" 16}} {{.i18n.Tr "explore.users"}}
  8. </a>
  9. <a class="{{if .PageIsExploreOrganizations}}active{{end}} item" href="{{AppSubUrl}}/explore/organizations">
  10. {{svg "octicon-organization" 16}} {{.i18n.Tr "explore.organizations"}}
  11. </a>
  12. {{if .IsRepoIndexerEnabled}}
  13. <a class="{{if .PageIsExploreCode}}active{{end}} item" href="{{AppSubUrl}}/explore/code">
  14. {{svg "octicon-code" 16}} {{.i18n.Tr "explore.code"}}
  15. </a>
  16. {{end}}
  17. </div>
  18. </div>
  19. <!--平板、移动端-->
  20. <div class="computer only two wide computer column">
  21. <div class="ui grid">
  22. <div class="sixteen wide column ui secondary sticky pointing tabular vertical menu">
  23. <a class="{{if .PageIsExploreRepositories}}active{{end}} item" href="{{AppSubUrl}}/explore/repos">
  24. {{svg "octicon-repo" 16}} {{.i18n.Tr "explore.repos"}}
  25. </a>
  26. <a class="{{if .PageIsExploreUsers}}active{{end}} item" href="{{AppSubUrl}}/explore/users">
  27. {{svg "octicon-person" 16}} {{.i18n.Tr "explore.users"}}
  28. </a>
  29. <a class="{{if .PageIsExploreOrganizations}}active{{end}} item" href="{{AppSubUrl}}/explore/organizations">
  30. {{svg "octicon-organization" 16}} {{.i18n.Tr "explore.organizations"}}
  31. </a>
  32. {{if .IsRepoIndexerEnabled}}
  33. <a class="{{if .PageIsExploreCode}}active{{end}} item" href="{{AppSubUrl}}/explore/code">
  34. {{svg "octicon-code" 16}} {{.i18n.Tr "explore.code"}}
  35. </a>
  36. {{end}}
  37. </div>
  38. </div>
  39. </div>
  40. <!--电脑、宽屏-->