3.6 KiB
Gallery
Static photo gallery for logging meals and food memories.
The site is based on the HTML5 UP Lens template and currently ships as a plain static site: HTML, CSS, JavaScript, and local image assets.
Repo Layout
templates/index.html: source template for the main gallery pagetemplates/rankings.html: source template for the rankings pageindex.html: generated static gallery pagerankings.html: generated static rankings pageassets/: site CSS, JavaScript, fonts, and audioimages/fulls/: full-size gallery imagesimages/thumbs/: gallery thumbnailsdata/meals.json: source of truth for gallery entriesdata/elo.json: Elo ratings, record totals, and ranking settingsscripts/build.js: renders static pages from templates and datascripts/generate-thumbnails.js: regenerates thumbnails from the full-size imagesscripts/ingest-meal.js: ingests a new meal image and metadata in one commandscripts/lib/elo.js: validates and syncs Elo data against the meal listpackage.json: minimal Node build entrypoint
Content Workflow
Gallery entries live in data/meals.json, and the build generates both index.html and rankings.html from the template and data files.
After editing content or templates, rebuild the site with:
npm run build
The gallery build keeps the existing Lens thumbnail markup intact, so the current client-side viewer code continues to work.
To ingest a new meal image and update the site in one command, run:
npm run ingest -- --image /path/to/photo.jpg --title "meal title" --description "notes"
Optional ingestion flags:
--position "left center"sets the viewer image alignment--focus-x 0.35 --focus-y 0.45sets the thumbnail crop focal point
If you only need to regenerate thumbnails, run:
npm run build:thumbs
To force a full thumbnail rebuild, run:
npm run build:thumbs:force
Rankings Data
data/elo.json stores the seed rating, Elo kFactor, and a win-loss record for each meal.
The page build keeps this file aligned with data/meals.json, so new meals automatically appear in rankings.html with the default seed rating.
The interactive voting flow on rankings.html uses browser localStorage for persistence.
That means Elo votes persist across reloads on the same browser and device, but they do not sync automatically across devices.
Use the reset button on the rankings page if you want to clear the local vote history and go back to the seeded board.
Image Conventions
- Full-size images and thumbnails share the same numeric ID
- Full-size images live at
images/fulls/<id>.jpg - Thumbnails live at
images/thumbs/<id>.jpg positioncontrols the full-screen viewer image alignmentthumbnail.focusoptionally overrides the default center crop for generated thumbnails
Thumbnail Focus
Thumbnails are generated from images/fulls with sharp at 240x320.
The generator auto-rotates images using EXIF orientation, skips unchanged files by default, and removes stale thumbnail .jpg files that no longer map to a meal entry.
For images that should crop away from the center, add optional thumbnail focus metadata to the meal entry:
{
"id": "34",
"title": "example",
"description": "example",
"thumbnail": {
"focus": {
"x": 0.35,
"y": 0.45
}
}
}
The x and y values are normalized from 0 to 1, where 0.5, 0.5 is the center of the image.
Planned Features
- Optional shared sync or export/import for rankings if browser-local persistence becomes too limiting.
- General cleanup and history cleanup once the bigger structural changes are in place.