gogs/templates/explore/navbar.tmpl

18 lines
898 B
Cheetah
Raw Normal View History

2015-09-01 01:20:23 +03:00
<div class="four wide column">
<div class="ui vertical menu navbar">
2015-09-01 01:20:23 +03:00
<div class="header item">{{.i18n.Tr "explore"}}</div>
<a class="{{if .PageIsExploreRepositories}}active{{end}} item" href="{{AppSubURL}}/explore/repos">
<span class="octicon octicon-repo"></span> {{.i18n.Tr "explore.repos"}}
</a>
2017-04-23 18:35:16 +03:00
<a class="{{if .PageIsExploreCommits}}active{{end}} item" href="{{AppSubURL}}/explore/commits">
<span class="octicon octicon-git-commit"></span> {{.i18n.Tr "explore.commits"}}
</a>
<a class="{{if .PageIsExploreUsers}}active{{end}} item" href="{{AppSubURL}}/explore/users">
<span class="octicon octicon-person"></span> {{.i18n.Tr "explore.users"}}
2015-09-01 01:20:23 +03:00
</a>
<a class="{{if .PageIsExploreOrganizations}}active{{end}} item" href="{{AppSubURL}}/explore/organizations">
<span class="octicon octicon-organization"></span> {{.i18n.Tr "explore.organizations"}}
</a>
2015-09-01 01:20:23 +03:00
</div>
</div>