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.

blob_list.tmpl 853 B

1234567891011121314151617181920212223242526272829303132333435
  1. <div class="ui blob-list">
  2. {{range .Blobs}}
  3. <div class="ui segment">
  4. <div class="ui header">
  5. <div>
  6. <a href="{{AppSubURL}}/{{.Source.GinRepoName}}">
  7. <span class="octicon octicon-repo"></span>
  8. {{.Source.GinRepoName}}
  9. </a>
  10. <a href="{{AppSubURL}}/{{.Source.GinRepoName}}/src/{{.Source.FirstCommit}}/{{.Source.Path}}">
  11. <span class="octicon octicon-file"></span>
  12. {{.Source.Path}}
  13. </a>
  14. <div class="ui right">
  15. <i class="heartbeat icon"></i>
  16. {{.Score}}
  17. </div>
  18. </div>
  19. </div>
  20. {{if .Highlight}}
  21. <div class="ui horizontal divider">
  22. hits
  23. </div>
  24. <div class="ui divided list">
  25. {{range .Highlight.Content}}
  26. <div class="item">
  27. {{. | Str2HTML}}
  28. </div>
  29. {{end}}
  30. </div>
  31. {{end}}
  32. </div>
  33. <div class="ui divider"></div>
  34. {{end}}
  35. </div>