navbar.tmpl 710 B

1234567891011121314
  1. <div class="four wide column">
  2. <div class="ui vertical menu navbar">
  3. <div class="header item">{{.i18n.Tr "explore"}}</div>
  4. <a class="{{if .PageIsExploreRepositories}}active{{end}} item" href="{{AppSubURL}}/explore/repos">
  5. <span class="octicon octicon-repo"></span> {{.i18n.Tr "explore.repos"}}
  6. </a>
  7. <a class="{{if .PageIsExploreUsers}}active{{end}} item" href="{{AppSubURL}}/explore/users">
  8. <span class="octicon octicon-person"></span> {{.i18n.Tr "explore.users"}}
  9. </a>
  10. <a class="{{if .PageIsExploreOrganizations}}active{{end}} item" href="{{AppSubURL}}/explore/organizations">
  11. <span class="octicon octicon-organization"></span> {{.i18n.Tr "explore.organizations"}}
  12. </a>
  13. </div>
  14. </div>