---
// Port of preview/pages/lightbox.html (layout: default).
// Liquid: photos | where: "horizontal", true — the gallery iterates the filtered
// list for both the fslightbox href and the Photo include.
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
import Photo from '@shared/components/ui/Photo.astro';
import photos from '@data/photos.json';
const filteredPhotos = photos.filter((photo) => photo.horizontal);
---