diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-12-01 20:38:51 -0600 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-12-01 20:38:51 -0600 |
| commit | f9c667edf50667c2c4265da7d80c7be1a3e7e355 (patch) | |
| tree | 0f9c8b3dc2ea98c296aad137ca61d63c91be8d50 | |
| parent | eac06268da852ae4bf22cfd1a18c56ff23dcc881 (diff) | |
| download | immich-frame-f9c667edf50667c2c4265da7d80c7be1a3e7e355.tar.xz immich-frame-f9c667edf50667c2c4265da7d80c7be1a3e7e355.zip | |
add comments to page and package-lock update
| -rw-r--r-- | static/package-lock.json | 2 | ||||
| -rw-r--r-- | static/public/index.html | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/static/package-lock.json b/static/package-lock.json index eefecf6..0a7d9d2 100644 --- a/static/package-lock.json +++ b/static/package-lock.json @@ -1,5 +1,5 @@ { - "name": "immich-frame", + "name": "static", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/static/public/index.html b/static/public/index.html index 04ffd4b..58172a1 100644 --- a/static/public/index.html +++ b/static/public/index.html @@ -8,6 +8,7 @@ <body class="bg-black text-white fill-white h-dvh max-h-screen flex flex-col m-0 overflow-hidden"> <header></header> <main class="my-4 overflow-hidden h-full flex flex-col"> + <!-- Slideshow Page --> <div id="slideshow" class="hidden! overflow-hidden h-full flex flex-col"> <div class="flex justify-end pe-[10vw] w-full absolute bg-gradient-to-b from-black/40 z-20"> <div id="slideshow-share" class="z-10"> @@ -25,6 +26,7 @@ <button id="next-slide" class="svg-btn size-12"><svg alt="Next Slide" class="size-full"><use href="#sprite-skip_next"></use></svg></button> </div> </div> + <!-- Albums Page --> <div id="albums" class="hidden! overflow-y-scroll"><div class="px-4 m-auto max-w-3xl"> <div class="p-2 sticky top-0 z-20 bg-black"> <input class="rounded-input mx-auto mb-4 w-full" id="album-search" placeholder="Search your albums" /> @@ -56,6 +58,7 @@ </div> </template> </div></div> + <!-- Settings Page --> <div id="settings" class="hidden! overflow-y-scroll"> <form class="flex flex-col gap-4 m-auto max-w-3xl mx-auto px-4"> <fieldset class="rounded-fieldset"> |
