added instruction booklet #11

Merged
christoffer merged 1 commits from ohayo-jacob/takunomi-blog:master into master 2025-08-08 21:03:44 +00:00
2 changed files with 1 additions and 0 deletions

View File

@ -71,6 +71,7 @@ func buildHandlers() {
http.HandleFunc("/post/", postHandler)
http.HandleFunc("/update", updateHandler)
http.HandleFunc("/", pastHandler)
http.Handle("/documents/", http.StripPrefix("/documents/", http.FileServer(http.Dir("documents"))))
http.Handle("/images/", http.StripPrefix("/images/", http.FileServer(http.Dir("images"))))
http.Handle("/css/", http.StripPrefix("/css/", http.FileServer(http.Dir("css"))))
}