Hello World
This is a paragraph.
Here's a code sample
func NewServer() http.Handler {
mux := http.NewServeMux()
mux.HandleFunc("/", index())
mux.HandleFunc("/assets/{path...}", staticAssetsHandler)
return mux
}
Here's an image

This is a paragraph.
func NewServer() http.Handler {
mux := http.NewServeMux()
mux.HandleFunc("/", index())
mux.HandleFunc("/assets/{path...}", staticAssetsHandler)
return mux
}