feat: add search functionality

This commit is contained in:
rramiachraf 2023-03-09 17:11:37 +01:00
parent b7c91e7f1b
commit dd0ee8723b
8 changed files with 198 additions and 6 deletions

View file

@ -62,7 +62,8 @@ func getTemplates(templates ...string) []string {
func render(n string, w http.ResponseWriter, data interface{}) {
w.Header().Set("content-type", "text/html")
t, err := template.ParseFiles(getTemplates(n, "navbar", "footer")...)
t := template.New(n + ".tmpl").Funcs(template.FuncMap{"extractURL": extractURL})
t, err := t.ParseFiles(getTemplates(n, "navbar", "footer")...)
if err != nil {
logger.Errorln(err)
w.WriteHeader(http.StatusInternalServerError)