diff --git a/documents/The Girl Who Kicked a Rabbit - Instruction Booklet.pdf b/documents/The Girl Who Kicked a Rabbit - Instruction Booklet.pdf new file mode 100644 index 0000000..e03af0d Binary files /dev/null and b/documents/The Girl Who Kicked a Rabbit - Instruction Booklet.pdf differ diff --git a/main.go b/main.go index 2fd6afa..9089417 100644 --- a/main.go +++ b/main.go @@ -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")))) }