sitemap.go 145 B

123456789101112
  1. package misc
  2. import (
  3. "gitote/gitote/pkg/context"
  4. )
  5. func Sitemap(c *context.Context) {
  6. c.Data["Title"] = "Sitemap"
  7. c.XML(200, "Yoginth")
  8. }