From ca556370259f100b3f21dd10344741fcf4d48597 Mon Sep 17 00:00:00 2001 From: Autumn Date: Mon, 11 May 2026 20:56:57 +0100 Subject: [pages] added basic devices route --- src/views/pages/dashboard/devices.pug | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/views/pages/dashboard/devices.pug (limited to 'src/views/pages/dashboard/devices.pug') diff --git a/src/views/pages/dashboard/devices.pug b/src/views/pages/dashboard/devices.pug new file mode 100644 index 0000000..1175136 --- /dev/null +++ b/src/views/pages/dashboard/devices.pug @@ -0,0 +1,27 @@ +doctype html + +html + + head + + include ../../components/head.pug + + title Devices | Home Control + + body + + include ../../components/dashboard/sidebar.pug + + main + + h1 Devices + + if !devices || devices.length < 1 + + p No devices :( + + else + + each device in devices + + p= JSON.stringify(device) -- cgit v1.3