Static landing page + markdown blog served by Go. Goldmark renders posts in-memory, no database. Dockerfile + compose for podman deployment. 👾 Generated with [Letta Code](https://letta.com) Co-Authored-By: Letta Code <noreply@letta.com>
27 lines
600 B
Go
27 lines
600 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
|
|
"chaosmith-site/blog"
|
|
)
|
|
|
|
func main() {
|
|
mux := http.NewServeMux()
|
|
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
|
http.ServeFile(w, r, "index.html")
|
|
})
|
|
mux.HandleFunc("/ABSTRACTS.png", func(w http.ResponseWriter, r *http.Request) {
|
|
http.ServeFile(w, r, "ABSTRACTS.png")
|
|
})
|
|
mux.Handle("/src/", http.StripPrefix("/src/", http.FileServer(http.Dir("src"))))
|
|
|
|
if err := blog.RegisterRoutes(mux, "content/posts"); err != nil {
|
|
log.Fatalf("blog: %v", err)
|
|
}
|
|
|
|
log.Println("listening on :8000")
|
|
http.ListenAndServe(":8000", mux)
|
|
}
|