No description
  • HTML 83.1%
  • CSS 10.4%
  • JavaScript 6.5%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Bart Dupon 0353c7e250
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Merge pull request 'prominence' (#3) from staging into main
Reviewed-on: #3
2026-08-25 20:50:45 +00:00
assets prominence 2026-08-25 22:48:48 +02:00
content/ap prominence 2026-08-25 22:48:48 +02:00
deploy more sneaky 2026-03-11 21:34:05 +01:00
layouts Play videos inline in the photo galleries 2026-08-24 21:47:52 +02:00
static footer marging 2026-04-07 17:34:59 +02:00
themes moon 2025-04-04 21:42:48 +02:00
.gitignore more 2025-03-16 22:43:42 +01:00
.gitmodules more photos 2025-03-16 22:43:11 +01:00
.hugo_build.lock more 2025-03-16 22:43:42 +01:00
.woodpecker.yml compose project name 2026-02-13 16:52:58 +01:00
hugo.toml Add 'created by bartdupon.net' to About section footer 2026-06-14 19:22:27 +02:00
LICENSE Initial commit 2025-01-25 20:09:27 +01:00
README.md Play videos inline in the photo galleries 2026-08-24 21:47:52 +02:00

m44

status-badge

a personal website

Adding a video to an album

Videos sit in the photo grid like any other picture: the tile shows a still frame with a play badge, and clicking it opens the same lightbox the photos use, with the clip playing.

  1. Drop the .mp4 in the album's asset folder, e.g. assets/ap/events/2026-08-12-totality.mp4.

  2. Add a poster image with the same basename next to it -- that still is what the grid shows, and it is not listed as a separate photo:

    ffmpeg -i assets/ap/events/2026-08-12-totality.mp4 \
        -ss 00:00:02 -vframes 1 -q:v 2 \
        assets/ap/events/2026-08-12-totality.jpg
    

    .jpeg, .png and .webp work as well. Hugo fails the build with an explanatory error if the poster is missing.

  3. Describe it in the album's _index.md under resources:. Point src at either the .mp4 or its poster image -- both are recognised. The same keys as a photo apply, and weight decides where it lands between the pictures:

      - src: /ap/events/2026-08-12-totality.mp4
        locations:
          - Carrión de los Condos
        categories:
          - Solar
        weight: 15
        phototitle: Totality
        description: 12/08/2026 - The last seconds before third contact.
    

The clip is only downloaded once someone opens it, and playback stops when the lightbox is closed or moves on to the next image.