From 2b302678650520750863ae19f7a940219646225c Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Fri, 5 Feb 2021 21:01:24 +0530 Subject: coded a server to serve the startpage locally --- startpage/server.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 startpage/server.go (limited to 'startpage/server.go') diff --git a/startpage/server.go b/startpage/server.go new file mode 100644 index 00000000..b2eef0ca --- /dev/null +++ b/startpage/server.go @@ -0,0 +1,22 @@ +package main + +import ( + "github.com/gin-gonic/gin" + "net/http" + "time" +) + +func main() { + router := gin.New() + router.LoadHTMLGlob("/home/zt/.config/startpage/index.html") + router.Static("main", "/home/zt/.config/startpage/") + + router.GET("/", func (c *gin.Context) { + time := time.Now().Format("15:04 02 Jan (Monday)") + c.HTML(http.StatusOK, "index.html", gin.H{ + "time": time, + }) + }) + + router.Run(":8081") +} -- cgit v1.2.3