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