certificate.go 201 B

12345678910111213141516
  1. package misc
  2. import (
  3. "gitote/gitote/pkg/context"
  4. )
  5. const (
  6. CERTIFICATE = "misc/certificate"
  7. )
  8. func Certificate(c *context.Context) {
  9. c.Data["Title"] = "Gitote Cert"
  10. c.HTML(200, CERTIFICATE)
  11. }