|
|
@@ -21,6 +21,7 @@ const (
|
|
|
FEATUREREQUEST = "pages/request"
|
|
|
SPONSORSHIP = "pages/sponsorship"
|
|
|
SITEMAP = "pages/sitemap"
|
|
|
+ DONATE = "pages/donate"
|
|
|
)
|
|
|
|
|
|
func About(c *context.Context) {
|
|
|
@@ -115,3 +116,9 @@ func Sponsorship(c *context.Context) {
|
|
|
|
|
|
c.HTML(200, SPONSORSHIP)
|
|
|
}
|
|
|
+
|
|
|
+func Donate(c *context.Context) {
|
|
|
+ c.Data["Title"] = "Donate"
|
|
|
+
|
|
|
+ c.HTML(200, DONATE)
|
|
|
+}
|