diff options
Diffstat (limited to 'src/views/pages/dashboard')
| -rw-r--r-- | src/views/pages/dashboard/devices.pug | 27 | ||||
| -rw-r--r-- | src/views/pages/dashboard/home.pug | 8 |
2 files changed, 34 insertions, 1 deletions
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) diff --git a/src/views/pages/dashboard/home.pug b/src/views/pages/dashboard/home.pug index 1faf2df..c5267bf 100644 --- a/src/views/pages/dashboard/home.pug +++ b/src/views/pages/dashboard/home.pug @@ -4,8 +4,14 @@ html head + include ../../components/head.pug + title Dashboard | Home Control body - p Home Control + include ../../components/dashboard/sidebar.pug + + main + + h1 Home Control |
