aboutsummaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-07-26 17:19:29 +0000
committerFuwn <[email protected]>2021-07-26 17:19:29 +0000
commit5679f12cab072bea3358ba9e04b2046d445d365c (patch)
tree6c1e9170e9a001c71aacbe677f9220fe947fde49 /handler.go
parentfeat(contact): add donation information (diff)
downloadspace-5679f12cab072bea3358ba9e04b2046d445d365c.tar.xz
space-5679f12cab072bea3358ba9e04b2046d445d365c.zip
refactor(donate): move donation information to seperate route
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/handler.go b/handler.go
index cf80280..c0d3e96 100644
--- a/handler.go
+++ b/handler.go
@@ -17,6 +17,7 @@ func routes() {
createRoute("/contact", "default.gmi", "pages/contact.gmi")
createRoute("/gemini", "default.gmi", "pages/gemini.gmi")
createRoute("/gopher", "default.gmi", "pages/gopher.gmi")
+ createRoute("/donate", "default.gmi", "pages/donate.gmi")
// TODO: Iterate over content/pages/blog directory to automate blog routing
createBlogRoute("/programming_languages", "pages/blog/programming_languages", "Programming Languages", false, noDateNoShow)