Merge pull request 'added instruction booklet' (#11) from ohayo-jacob/takunomi-blog:master into master

Reviewed-on: #11
This commit is contained in:
Christoffer Müller Madsen 2025-08-08 21:03:44 +00:00
commit 875a3427dc
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"))))
}