run devtools after page render
All checks were successful
Deploy ${{ gitea.repository }} / build (push) Successful in 1s

This commit is contained in:
Adam Jeniski 2025-10-13 08:13:43 -09:00
parent 5d6ae82fab
commit 5136bf43a1

View File

@ -10,8 +10,7 @@
(def index (def index
(str (h/html [:title "Ajet Dashboard"] (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 "stylesheet", :href "/css/style.css"}]
[:link [:link
{:rel "icon", {:rel "icon",
@ -31,7 +30,9 @@
[:li [:a {:href "https://uptime.ajet.fyi"} "uptime"]] [:li [:a {:href "https://uptime.ajet.fyi"} "uptime"]]
[:li [:a {:href "https://service-manager.ajet.fyi"} "ci"]] [:li [:a {:href "https://service-manager.ajet.fyi"} "ci"]]
[:li [:a {:href "https://mini:8006"} "cluster"]] [: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 (defroutes approutes
(GET "/" [] index)) (GET "/" [] index))