summaryrefslogtreecommitdiff
path: root/web/router.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-01-11 20:02:10 +0100
committerxengineering <me@xengineering.eu>2023-01-11 20:51:13 +0100
commit1f8b5c2bbe20c4c6b7b334b00ae5e6622dcd51f7 (patch)
tree7fbff0112ca778aadad7baa988f502939dd11367 /web/router.go
parent6b5857ee55af81b2f9effa8591f716591f79e5fd (diff)
downloadceres-1f8b5c2bbe20c4c6b7b334b00ae5e6622dcd51f7.tar
ceres-1f8b5c2bbe20c4c6b7b334b00ae5e6622dcd51f7.tar.zst
ceres-1f8b5c2bbe20c4c6b7b334b00ae5e6622dcd51f7.zip
Switch to simple.css
This makes it easier to maintain and it looks better.
Diffstat (limited to 'web/router.go')
-rw-r--r--web/router.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/router.go b/web/router.go
index b26dc88..5b972c2 100644
--- a/web/router.go
+++ b/web/router.go
@@ -18,7 +18,7 @@ func RunServer(config utils.HttpConfig, db *utils.Database) {
http.HandleFunc("/add_recipes", add_recipes(db, config.Storage, config.Static))
- http.HandleFunc("/static/libweb.css", static("libweb.css", config.Static))
+ http.HandleFunc("/static/style.css", static("style.css", config.Static))
http.HandleFunc("/favicon.ico", static("favicon.ico", config.Static))
address := config.Host + ":" + config.Port