mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
feat: add footer which includes the repo link
This commit is contained in:
parent
9371e53972
commit
f01607946a
6 changed files with 57 additions and 16 deletions
12
utils.go
12
utils.go
|
@ -60,9 +60,17 @@ func securityHeaders(next http.Handler) http.Handler {
|
|||
})
|
||||
}
|
||||
|
||||
func getTemplates(templates ...string) []string {
|
||||
var pths []string
|
||||
for _, t := range templates {
|
||||
tmpl := path.Join("views",fmt.Sprintf("%s.tmpl", t))
|
||||
pths = append(pths, tmpl)
|
||||
}
|
||||
return pths
|
||||
}
|
||||
|
||||
func render(n string, w http.ResponseWriter, data any) {
|
||||
tmpl := fmt.Sprintf("%s.tmpl",n )
|
||||
t, err := template.ParseFiles(path.Join("views", tmpl))
|
||||
t, err := template.ParseFiles(getTemplates(n, "navbar", "footer")...)
|
||||
if err != nil {
|
||||
w.WriteHeader(http.StatusInternalServerError)
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue