2024-03-22 23:54:09 +00:00
|
|
|
<overflow-menu class="ui secondary pointing tabular top attached borderless menu secondary-nav">
|
2024-03-15 02:05:31 +00:00
|
|
|
<div class="overflow-menu-items tw-justify-center">
|
2023-09-25 01:03:00 +00:00
|
|
|
<a class="{{if .PageIsExploreRepositories}}active {{end}}item" href="{{AppSubUrl}}/explore/repos">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{svg "octicon-repo"}} {{ctx.Locale.Tr "explore.repos"}}
|
2021-03-11 13:40:54 +00:00
|
|
|
</a>
|
2023-09-25 01:03:00 +00:00
|
|
|
{{if not .UsersIsDisabled}}
|
|
|
|
<a class="{{if .PageIsExploreUsers}}active {{end}}item" href="{{AppSubUrl}}/explore/users">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{svg "octicon-person"}} {{ctx.Locale.Tr "explore.users"}}
|
2023-09-25 01:03:00 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
<a class="{{if .PageIsExploreOrganizations}}active {{end}}item" href="{{AppSubUrl}}/explore/organizations">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{svg "octicon-organization"}} {{ctx.Locale.Tr "explore.organizations"}}
|
2023-09-25 01:03:00 +00:00
|
|
|
</a>
|
2024-04-17 08:31:37 +00:00
|
|
|
{{if and (not ctx.Consts.RepoUnitTypeCode.UnitGlobalDisabled) .IsRepoIndexerEnabled}}
|
2023-09-25 01:03:00 +00:00
|
|
|
<a class="{{if .PageIsExploreCode}}active {{end}}item" href="{{AppSubUrl}}/explore/code">
|
2023-09-25 08:56:50 +00:00
|
|
|
{{svg "octicon-code"}} {{ctx.Locale.Tr "explore.code"}}
|
2023-09-25 01:03:00 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
2024-03-15 02:05:31 +00:00
|
|
|
</overflow-menu>
|