aboutsummaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-07-19 23:50:41 +0000
committerFuwn <[email protected]>2021-07-19 23:50:41 +0000
commita4d9175a38b2e59d94400d03e6c4cdca47fd5bea (patch)
tree9749fc2fbad9f0764b75c365802c72b89aa3402d /handler.go
parentfeat(route): optional blog post reversing (diff)
downloadspace-a4d9175a38b2e59d94400d03e6c4cdca47fd5bea.tar.xz
space-a4d9175a38b2e59d94400d03e6c4cdca47fd5bea.zip
feat(route): lots of options for blog routes
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/handler.go b/handler.go
index 077291f..d17ff46 100644
--- a/handler.go
+++ b/handler.go
@@ -17,7 +17,7 @@ func routes() {
createRoute("/gemini", "default.gmi", "pages/gemini.gmi")
// TODO: Iterate over content/pages/blog directory to automate blog routing
- createBlogRoute("/programming_languages", "pages/blog/programming_languages", "Programming Languages", true)
+ createBlogRoute("/programming_languages", "pages/blog/programming_languages", "Programming Languages", false, noDateNoShow)
createBlogHandler("/blog")
}