From aa661563886765e359942d8c22a3061085d930af Mon Sep 17 00:00:00 2001 From: Justin Deal Date: Fri, 2 May 2025 23:16:34 -0700 Subject: [PATCH] filtering working --- src/pages/homelab/index.astro | 116 +++++++++++++++++++++++----------- 1 file changed, 78 insertions(+), 38 deletions(-) diff --git a/src/pages/homelab/index.astro b/src/pages/homelab/index.astro index 5b286d9..8246393 100644 --- a/src/pages/homelab/index.astro +++ b/src/pages/homelab/index.astro @@ -8,6 +8,11 @@ import { services } from "./services.ts"; + {GLOBAL.username} • {GLOBAL.shortDescription} @@ -24,47 +29,82 @@ import { services } from "./services.ts";
-
-

Homelab

-
- - {Object.entries(services).map(([category, apps], index) => ( -
- - -
-
- {apps.length > 0 ? ( - apps.map(app => ( - - )) - ) : ( -

Coming soon...

- )} -
+ + + +
- ))} + + {Object.entries(services).map(([category, apps], index) => ( +
+ + +
+
+ {apps.length > 0 ? ( + apps.map(app => ( +
+ +
+ )) + ) : ( +

Coming soon...

+ )} +
+
+
+ ))} +