Files
Atay-Makhzan/templates/explore/navbar.tmpl
T

17 lines
798 B
Cheetah
Raw Normal View History

2017-12-31 01:47:52 +01:00
<div class="ui secondary pointing tabular top attached borderless stackable menu navbar">
2017-03-15 18:55:12 +00:00
<a class="{{if .PageIsExploreRepositories}}active{{end}} item" href="{{AppSubUrl}}/explore/repos">
2020-02-11 11:02:41 -06:00
{{svg "octicon-repo" 16}} {{.i18n.Tr "explore.repos"}}
2017-03-15 18:55:12 +00:00
</a>
<a class="{{if .PageIsExploreUsers}}active{{end}} item" href="{{AppSubUrl}}/explore/users">
2020-02-11 11:02:41 -06:00
{{svg "octicon-person" 16}} {{.i18n.Tr "explore.users"}}
2017-03-15 18:55:12 +00:00
</a>
<a class="{{if .PageIsExploreOrganizations}}active{{end}} item" href="{{AppSubUrl}}/explore/organizations">
2020-02-11 11:02:41 -06:00
{{svg "octicon-organization" 16}} {{.i18n.Tr "explore.organizations"}}
2017-03-15 18:55:12 +00:00
</a>
2018-03-16 22:04:33 +08:00
{{if .IsRepoIndexerEnabled}}
<a class="{{if .PageIsExploreCode}}active{{end}} item" href="{{AppSubUrl}}/explore/code">
2020-02-11 11:02:41 -06:00
{{svg "octicon-code" 16}} {{.i18n.Tr "explore.code"}}
2018-03-16 22:04:33 +08:00
</a>
{{end}}
2015-12-07 23:30:52 +01:00
</div>