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

navbar.tmpl 1.3 kB

4 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <style>
  2. .dis {
  3. margin-bottom: 20px;
  4. }
  5. .disabled {
  6. cursor: pointer;
  7. pointer-events: none;
  8. }
  9. .ui.segment.bottom.attached {
  10. border: none;
  11. }
  12. .ui.secondary.vertical.pointing.menu{
  13. border-right-width: 0px !important;
  14. }
  15. .vertical.menu .item {
  16. border-right-color: white !important;
  17. }
  18. .vertical.menu .activate.item {
  19. font-weight: 700;
  20. }
  21. </style>
  22. <div class="three wide column">
  23. <div class="ui grid">
  24. <div class="sixteen wide column ui secondary sticky pointing tabular vertical menu">
  25. <a class="{{if .PageIsNotebook}}active{{end}} item" href="{{.RepoLink}}/modelarts/notebook">
  26. {{svg "octicon-repo" 16}} {{.i18n.Tr "repo.modelarts.nodebook"}}
  27. </a>
  28. <a class="{{if .PageIsTrainJob}}active{{end}} item" href="{{.RepoLink}}/modelarts/train-job">
  29. {{svg "octicon-inbox" 16}} {{.i18n.Tr "repo.modelarts.train_job"}}
  30. </a>
  31. <a class="{{if .PageIsParaManage}}active{{end}} item" href="{{.RepoLink}}/modelarts/train-job/para-manage">
  32. {{svg "octicon-inbox" 16}} {{.i18n.Tr "repo.modelarts.train_job_para_admin"}}
  33. </a>
  34. </div>
  35. </div>
  36. </div>