diff --git a/assets/css/base.css b/assets/css/base.css new file mode 100644 index 0000000..a8cb6c2 --- /dev/null +++ b/assets/css/base.css @@ -0,0 +1,4 @@ +body { + color: white; + background-color: black; +} diff --git a/main.go b/main.go index 702f5ee..ef1ac6d 100644 --- a/main.go +++ b/main.go @@ -11,6 +11,7 @@ func setupRouter() *gin.Engine { // gin.DisableConsoleColor() router := gin.Default() + router.Static("/assets", "./assets") router.LoadHTMLGlob("templates/*") // Ping test