diff --git a/src/ajet/www/core.clj b/src/ajet/www/core.clj index 6c77014..6cb58c7 100644 --- a/src/ajet/www/core.clj +++ b/src/ajet/www/core.clj @@ -10,8 +10,7 @@ (def index (str (h/html [:title "Ajet Dashboard"] - [:script {:src "https://cdn.jsdelivr.net/npm/eruda"}] - [:script "eruda.init()"] + [:link {:rel "stylesheet", :href "/css/style.css"}] [:link {:rel "icon", @@ -31,7 +30,9 @@ [:li [:a {:href "https://uptime.ajet.fyi"} "uptime"]] [:li [:a {:href "https://service-manager.ajet.fyi"} "ci"]] [:li [:a {:href "https://mini:8006"} "cluster"]] - [:li [:a {:href "http://192.168.1.124:8081"} "mp4"]]]))) + [:li [:a {:href "http://192.168.1.124:8081"} "mp4"]]] + [:script {:src "https://cdn.jsdelivr.net/npm/eruda"}] + [:script "eruda.init()"]))) (defroutes approutes (GET "/" [] index))