added contact page, wip page, and removed background image

This commit is contained in:
rawleyIfowler
2022-02-07 14:08:16 -06:00
parent 36cb46c7e7
commit a2eceb7b7e
8 changed files with 28 additions and 9 deletions

View File

@@ -27,6 +27,8 @@ func InitializeRoutes(router *gin.Engine) {
router.NoRoute(ServePage("not_found.tmpl"))
router.GET("/", ServePage("index.tmpl"))
router.GET("/resume", ServePage("resume.tmpl"))
router.GET("/contact", ServePage("contact.tmpl"))
router.GET("/blog", ServePage("wip.tmpl"));
}
// Returns a handler function to serve a page based on the template that is inputted