Added blog posts, and improved homepage

This commit is contained in:
2025-05-23 18:12:16 +02:00
parent 99ab5d388c
commit 847fb6491d
28 changed files with 721 additions and 132 deletions

View File

@@ -2,6 +2,7 @@ package main
import (
"net/http"
"prettysunflower-website/blog"
"prettysunflower-website/keys"
"prettysunflower-website/pages"
"prettysunflower-website/regio43"
@@ -13,6 +14,7 @@ func main() {
regio43.InitHttpHandlers()
static.InitHttpHandlers()
keys.InitHttpHandlers()
blog.InitHttpHandlers()
_ = http.ListenAndServe(":3334", nil)
}