🚧 Add front-end code
This commit is contained in:
parent
7cdc9c07ab
commit
c0c2a5ffcc
5 changed files with 127 additions and 0 deletions
46
front-end/cmd/web/main.go
Normal file
46
front-end/cmd/web/main.go
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"html/template"
|
||||
"log"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
func main() {
|
||||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
render(w, "test.page.gohtml")
|
||||
})
|
||||
|
||||
fmt.Println("Starting front end service on port 80")
|
||||
err := http.ListenAndServe(":80", nil)
|
||||
if err != nil {
|
||||
log.Panic(err)
|
||||
}
|
||||
}
|
||||
|
||||
func render(w http.ResponseWriter, t string) {
|
||||
|
||||
partials := []string{
|
||||
"./front-end/cmd/web/templates/base.layout.gohtml",
|
||||
"./front-end/cmd/web/templates/header.partial.gohtml",
|
||||
"./front-end/cmd/web/templates/footer.partial.gohtml",
|
||||
}
|
||||
|
||||
var templateSlice []string
|
||||
templateSlice = append(templateSlice, fmt.Sprintf("./front-end/cmd/web/templates/%s", t))
|
||||
|
||||
for _, x := range partials {
|
||||
templateSlice = append(templateSlice, x)
|
||||
}
|
||||
|
||||
tmpl, err := template.ParseFiles(templateSlice...)
|
||||
if err != nil {
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
if err := tmpl.Execute(w, nil); err != nil {
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue