Fix lack of title on syntax page
This commit is contained in:
parent
f7ce7d7abf
commit
70701454a0
5
main.go
5
main.go
|
@ -294,7 +294,6 @@ func pasteHandler(w http.ResponseWriter, r *http.Request) {
|
|||
link := ADDRESS + "/raw/" + paste
|
||||
download := ADDRESS + "/download/" + paste
|
||||
clone := ADDRESS + "/clone/" + paste
|
||||
if lang == "" {
|
||||
p := &Page{
|
||||
Title: title,
|
||||
Body: []byte(s),
|
||||
|
@ -303,13 +302,15 @@ func pasteHandler(w http.ResponseWriter, r *http.Request) {
|
|||
Download: download,
|
||||
Clone: clone,
|
||||
}
|
||||
if lang == "" {
|
||||
|
||||
err := templates.ExecuteTemplate(w, "paste.html", p)
|
||||
if err != nil {
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
}
|
||||
|
||||
} else {
|
||||
fmt.Fprintf(w, string(syntax), paste, paste, s, ADDRESS, download, link, clone)
|
||||
fmt.Fprintf(w, string(syntax), p.Title, p.Title, s, p.Home, p.Download, p.Raw, p.Clone)
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue