gitea源码

1234567891011121314151617181920212223
  1. <overflow-menu class="ui secondary pointing tabular top attached borderless menu secondary-nav">
  2. <div class="overflow-menu-items tw-justify-center">
  3. <a class="{{if .PageIsExploreRepositories}}active {{end}}item" href="{{AppSubUrl}}/explore/repos">
  4. {{svg "octicon-repo"}} {{ctx.Locale.Tr "explore.repos"}}
  5. </a>
  6. {{if not .UsersPageIsDisabled}}
  7. <a class="{{if .PageIsExploreUsers}}active {{end}}item" href="{{AppSubUrl}}/explore/users">
  8. {{svg "octicon-person"}} {{ctx.Locale.Tr "explore.users"}}
  9. </a>
  10. {{end}}
  11. {{if not .OrganizationsPageIsDisabled}}
  12. <a class="{{if .PageIsExploreOrganizations}}active {{end}}item" href="{{AppSubUrl}}/explore/organizations">
  13. {{svg "octicon-organization"}} {{ctx.Locale.Tr "explore.organizations"}}
  14. </a>
  15. {{end}}
  16. {{if and (not ctx.Consts.RepoUnitTypeCode.UnitGlobalDisabled) .IsRepoIndexerEnabled (not .CodePageIsDisabled)}}
  17. <a class="{{if .PageIsExploreCode}}active {{end}}item" href="{{AppSubUrl}}/explore/code">
  18. {{svg "octicon-code"}} {{ctx.Locale.Tr "explore.code"}}
  19. </a>
  20. {{end}}
  21. </div>
  22. </overflow-menu>