ratelimit.html 314 B

12345678910111213141516
  1. {{ template "header" .}}
  2. <main>
  3. <h2>{{.Title}}</h2>
  4. <p>Try another instance or wait.</p>
  5. <h2>Info</h2>
  6. {{ range $key, $value := .ratelimit}}
  7. <p>Limit: <b>{{.Limit}}</b></p>
  8. <p>Remaining: <b>{{.Remaining}}</b></p>
  9. {{ end }}
  10. <i>Todo: implement GitHub API keys</i>
  11. </main>
  12. {{ template "footer" .}}