You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

navbar.tmpl 837B

12345678910111213141516171819
  1. <div class="four wide column">
  2. <div class="ui vertical menu">
  3. <a class="{{if .PageIsSettingsOptions}}active{{end}} item" href="{{.RepoLink}}/settings">
  4. {{.i18n.Tr "repo.settings.options"}}
  5. </a>
  6. <a class="{{if .PageIsSettingsCollaboration}}active{{end}} item" href="{.RepoLink}}/settings/collaboration">
  7. {{.i18n.Tr "repo.settings.collaboration"}}
  8. </a>
  9. <a class="{{if .PageIsSettingsHooks}}active{{end}} item" href="{{.RepoLink}}/settings/hooks">
  10. {{.i18n.Tr "repo.settings.hooks"}}
  11. </a>
  12. <a class="{{if .PageIsSettingsGitHooks}}active{{end}} item" href="{{.RepoLink}}/settings/hooks/git">
  13. {{.i18n.Tr "repo.settings.githooks"}}
  14. </a>
  15. <a class="{{if .PageIsSettingsKeys}}active{{end}} item" href="{{.RepoLink}}/settings/keys">
  16. {{.i18n.Tr "repo.settings.deploy_keys"}}
  17. </a>
  18. </div>
  19. </div>