Template bug fix
This commit is contained in:
parent
8f1a9a04e8
commit
588f5b3510
5
main.go
5
main.go
|
@ -218,8 +218,6 @@ func getPaste(paste string) string {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var templates = template.Must(template.ParseFiles("assets/paste.html"))
|
|
||||||
|
|
||||||
func pasteHandler(w http.ResponseWriter, r *http.Request) {
|
func pasteHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
vars := mux.Vars(r)
|
vars := mux.Vars(r)
|
||||||
paste := vars["pasteId"]
|
paste := vars["pasteId"]
|
||||||
|
@ -228,10 +226,11 @@ func pasteHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
Title: paste,
|
Title: paste,
|
||||||
Body: []byte(s),
|
Body: []byte(s),
|
||||||
}
|
}
|
||||||
err := templates.ExecuteTemplate(w, "assets/paste.html", p)
|
t, err := template.ParseFiles("assets/edit.html")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
}
|
}
|
||||||
|
t.Execute(w, p)
|
||||||
}
|
}
|
||||||
|
|
||||||
func rawHandler(w http.ResponseWriter, r *http.Request) {
|
func rawHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
Loading…
Reference in New Issue