mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-23 00:03:43 +00:00
25 lines
484 B
Go
25 lines
484 B
Go
|
package pages
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"text/template"
|
||
|
|
||
|
"code.tjo.space/mentos1386/zdravko/internal"
|
||
|
)
|
||
|
|
||
|
func Settings(w http.ResponseWriter, r *http.Request) {
|
||
|
ts, err := template.ParseFS(internal.Templates,
|
||
|
"ui/components/base.tmpl",
|
||
|
"ui/pages/settings.tmpl",
|
||
|
)
|
||
|
if err != nil {
|
||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
err = ts.ExecuteTemplate(w, "base", nil)
|
||
|
if err != nil {
|
||
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||
|
}
|
||
|
}
|