Fix 404 on the three FlowFuse 3.0 release blog videos - #5705
Merged
Conversation
The three <video> tags used src="./images/*.webm". Markdown images tolerate that because the 11ty image shortcode (lib/image-handler.js) resolves them at build time against the source file, but raw HTML is passed through untouched, so the browser resolves "./" against the rendered page URL. Blog permalinks are pretty URLs, so the post renders at /blog/2026/08/flowfuse-release-3-0/, one level deeper than the assets at /blog/2026/08/images/, and all three requests 404'd in production. Switched to the root-absolute /blog/2026/08/images/ form that every other recent post already uses.
hardillb
approved these changes
Aug 28, 2026
dimitrieh
enabled auto-merge
August 28, 2026 13:21
Contributor
Author
|
@KristopherLeads FYI. Curious how this has slipped us 🤔 |
✅ Deploy Preview for flowforge-website ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
2 tasks
✅ Deploy Preview for flowforge-website ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
Author
|
Preview affected pages: All three |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
The three
<video>tags in the 3.0 release post usesrc="./images/*.webm". Raw HTML is not rewritten by the 11ty image shortcode, so the browser resolves./against the pretty permalink/blog/2026/08/flowfuse-release-3-0/, one level deeper than the assets. All three 404 in production. Switched to the root-absolute/blog/2026/08/images/form every other recent post uses.Related Issue(s)
None.
Checklist