diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-01-25 17:15:23 -1000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-01-25 17:15:23 -1000 |
| commit | 4420aace9c0ee1bb3255190234f4a2035619b473 (patch) | |
| tree | e5dc0fe1878984fbefeb012e235df896b63de4f0 /web | |
| parent | 6518a7ed5ee8800741351166a724da53cb2f271e (diff) | |
Fix timezone and date handling bugs #40, #41, #42
#40, #41: Fix calendar event timezone handling
- Parse all-day events in local timezone using ParseInLocation
- Convert timed events to local time after parsing RFC3339
- Update ComputeDaySection to normalize both now and item time to local
before comparison, ensuring consistent today/tomorrow classification
#42: Mobile conditions page now uses 2 columns
- Changed 600px breakpoint from 1 column to 2 columns
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'web')
| -rw-r--r-- | web/templates/conditions.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web/templates/conditions.html b/web/templates/conditions.html index 14b10b0..66f87ce 100644 --- a/web/templates/conditions.html +++ b/web/templates/conditions.html @@ -69,8 +69,8 @@ } @media (max-width: 600px) { .video-grid { - grid-template-columns: 1fr; - grid-template-rows: repeat(6, 1fr); + grid-template-columns: repeat(2, 1fr); + grid-template-rows: repeat(3, 1fr); } } </style> @@ -82,7 +82,7 @@ <!-- V1cam - Kilauea West Rim --> <div class="video-cell"> <iframe - src="https://www.youtube.com/embed/WTy3dGhGBOY?autoplay=1&mute=1&controls=1&modestbranding=1&rel=0" + src="https://www.youtube.com/embed/tk0tfYDxrUA?autoplay=1&mute=1&controls=1&modestbranding=1&rel=0" allow="autoplay; encrypted-media; picture-in-picture" allowfullscreen> </iframe> @@ -92,7 +92,7 @@ <!-- V2cam - Kilauea East Rim --> <div class="video-cell"> <iframe - src="https://www.youtube.com/embed/Gd2Tm5jblbE?autoplay=1&mute=1&controls=1&modestbranding=1&rel=0" + src="https://www.youtube.com/embed/fiyttmA7YkA?autoplay=1&mute=1&controls=1&modestbranding=1&rel=0" allow="autoplay; encrypted-media; picture-in-picture" allowfullscreen> </iframe> @@ -102,7 +102,7 @@ <!-- V3cam - Kilauea South Rim --> <div class="video-cell"> <iframe - src="https://www.youtube.com/embed/BqmpkUdMtyA?autoplay=1&mute=1&controls=1&modestbranding=1&rel=0" + src="https://www.youtube.com/embed/gXKuUyKt8mc?autoplay=1&mute=1&controls=1&modestbranding=1&rel=0" allow="autoplay; encrypted-media; picture-in-picture" allowfullscreen> </iframe> |
