gddo-server: Handle static files properly.

Add handlers for newly added Bootstrap and jQuery files. These files are
stored locally now instead of being fetched from CDN. But those static
files are not handled properly in our serve mux, causing the serve keeps
requesting them infinitely.

Change-Id: Iddc680bb889f1327ec9265fa33eff94d9fa8dec4
Reviewed-on: https://go-review.googlesource.com/23721
Reviewed-by: Andrew Gerrand <adg@golang.org>
Reviewed-by: Alan Donovan <adonovan@google.com>
diff --git a/gddo-server/main.go b/gddo-server/main.go
index 31bb818..0b0ef45 100644
--- a/gddo-server/main.go
+++ b/gddo-server/main.go
@@ -963,9 +963,13 @@
 		"third_party/jquery.timeago.js",
 		"site.js"))
 	mux.Handle("/-/site.css", staticServer.FilesHandler("site.css"))
+	mux.Handle("/-/bootstrap.min.css", staticServer.FilesHandler("bootstrap.min.css"))
+	mux.Handle("/-/bootstrap.min.js", staticServer.FilesHandler("bootstrap.min.js"))
+	mux.Handle("/-/jquery-2.0.3.min.js", staticServer.FilesHandler("jquery-2.0.3.min.js"))
 	if *sidebarEnabled {
 		mux.Handle("/-/sidebar.css", staticServer.FilesHandler("sidebar.css"))
 	}
+	mux.Handle("/-/", http.NotFoundHandler())
 
 	mux.Handle("/-/about", handler(serveAbout))
 	mux.Handle("/-/bot", handler(serveBot))