Ivan built this Hugo Book theme as an example.
This is a test page.
package main
import (
"fmt"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
}
func main() {
http.HandleFunc("/", handler)
http.ListenAndServe(":8080", nil)
}
Android
This is a tab for Android content.
iOS
This is a tab for iOS content.
Windows
This is a tab for Windows content.