dockerized
This commit is contained in:
47
src/main.go
Normal file
47
src/main.go
Normal file
@@ -0,0 +1,47 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"html/template"
|
||||
"io"
|
||||
|
||||
"github.com/labstack/echo/v4"
|
||||
"github.com/labstack/echo/v4/middleware"
|
||||
)
|
||||
|
||||
type Templates struct {
|
||||
templates *template.Template
|
||||
}
|
||||
|
||||
func (t *Templates) Render(w io.Writer, name string, data interface{}, c echo.Context) error {
|
||||
return t.templates.ExecuteTemplate(w, name, data)
|
||||
}
|
||||
|
||||
func NewTemplates() *Templates {
|
||||
return &Templates{
|
||||
templates: template.Must(template.ParseGlob("views/*.html")),
|
||||
}
|
||||
}
|
||||
|
||||
type Page struct {
|
||||
}
|
||||
|
||||
func newPage() Page {
|
||||
return Page{}
|
||||
}
|
||||
|
||||
func main() {
|
||||
e := echo.New()
|
||||
e.Renderer = NewTemplates()
|
||||
e.Use(middleware.Logger())
|
||||
|
||||
page := newPage()
|
||||
|
||||
e.Static("/images", "images")
|
||||
e.Static("/css", "css")
|
||||
|
||||
e.GET("/", func(c echo.Context) error {
|
||||
return c.Render(200, "index", page)
|
||||
})
|
||||
|
||||
e.Logger.Fatal(e.Start(":5000"))
|
||||
}
|
||||
Reference in New Issue
Block a user