Доброго.
Возникла мерзкая ашыбка:
Выдаёт в консоль браузера:
«The stylesheet http://127.0.0.1:8000/static/css/mystyle.css was not loaded because its MIME type, “text/html”, is not “text/css”.
Ругается и на js.
<link href="/static/css/mystyle.css" rel="stylesheet">
package main
import (
"fmt"
"html/template"
"net/http"
)
func indexHandler(w http.ResponseWriter, r *http.Request) {
tp := template.Must(template.ParseGlob("templates/*.*"))
tp.ExecuteTemplate(w, "index", nil)
}
func main() {
fmt.Println("Listening port: 8000")
//http.Handle("/static/", http.FileServer(http.Dir("/static/")))
http.HandleFunc("/", indexHandler)
http.ListenAndServe(":8000", nil)
}
Интернет не помогает.