feat: add footer which includes the repo link

This commit is contained in:
rramiachraf 2022-12-17 21:45:45 +01:00
parent 9371e53972
commit f01607946a
6 changed files with 57 additions and 16 deletions

View file

@ -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