Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

navbar.tmpl 1.2 KB

12345678910111213141516171819202122232425
  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="item" href="https://doid.gin.g-node.org">
  8. <span class="octicon octicon-mortar-board"></span> {{.i18n.Tr "gindoi"}}
  9. </a>
  10. <a class="{{if .PageIsExploreData}}active{{end}} item" href="{{AppSubURL}}/explore/data">
  11. <span class="octicon octicon-file"></span> {{.i18n.Tr "explore.data"}}
  12. </a>
  13. <a class="{{if .PageIsExploreCommits}}active{{end}} item" href="{{AppSubURL}}/explore/commits">
  14. <span class="octicon octicon-git-commit"></span> {{.i18n.Tr "explore.commits"}}
  15. </a>
  16. {{if .LoggedUser}}
  17. <a class="{{if .PageIsExploreUsers}}active{{end}} item" href="{{AppSubURL}}/explore/users">
  18. <span class="octicon octicon-person"></span> {{.i18n.Tr "explore.users"}}
  19. </a>
  20. <a class="{{if .PageIsExploreOrganizations}}active{{end}} item" href="{{AppSubURL}}/explore/organizations">
  21. <span class="octicon octicon-organization"></span> {{.i18n.Tr "explore.organizations"}}
  22. </a>
  23. {{end}}
  24. </div>
  25. </div>