mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
refactor render function and add home page
This commit is contained in:
parent
e7e08aad6d
commit
4b70a153aa
6 changed files with 56 additions and 12 deletions
6
utils.go
6
utils.go
|
@ -2,6 +2,7 @@ package main
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"log"
|
||||
"net/http"
|
||||
"path"
|
||||
|
@ -59,8 +60,9 @@ func securityHeaders(next http.Handler) http.Handler {
|
|||
})
|
||||
}
|
||||
|
||||
func render(w http.ResponseWriter, data any) {
|
||||
t, err := template.ParseFiles(path.Join("views/lyrics.tmpl"))
|
||||
func render(n string, w http.ResponseWriter, data any) {
|
||||
tmpl := fmt.Sprintf("%s.tmpl",n )
|
||||
t, err := template.ParseFiles(path.Join("views", tmpl))
|
||||
if err != nil {
|
||||
w.WriteHeader(http.StatusInternalServerError)
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue