2016-03-07 04:31:13 +09:00
|
|
|
package route
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/flosch/pongo2"
|
|
|
|
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Index(c *gin.Context) {
|
2016-03-08 18:43:20 +09:00
|
|
|
c.HTML(http.StatusOK, "index.html", pongo2.Context{})
|
2016-03-07 04:31:13 +09:00
|
|
|
}
|