code.gitea.io/gitea@v1.22.3/templates/explore/navbar.tmpl (about) 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 .UsersIsDisabled}} 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 <a class="{{if .PageIsExploreOrganizations}}active {{end}}item" href="{{AppSubUrl}}/explore/organizations"> 12 {{svg "octicon-organization"}} {{ctx.Locale.Tr "explore.organizations"}} 13 </a> 14 {{if and (not ctx.Consts.RepoUnitTypeCode.UnitGlobalDisabled) .IsRepoIndexerEnabled}} 15 <a class="{{if .PageIsExploreCode}}active {{end}}item" href="{{AppSubUrl}}/explore/code"> 16 {{svg "octicon-code"}} {{ctx.Locale.Tr "explore.code"}} 17 </a> 18 {{end}} 19 </div> 20 </overflow-menu>