Problem
The Exomiser project page (project/exomiser/index.md, line 28) has an inline <img> tag in the markdown body with a relative path:
<img src="Exomiser-team-May2022%20-%201%20(1).jpeg" width="40%">
The image file exists at project/exomiser/Exomiser-team-May2022 - 1 (1).jpeg, but the relative src can resolve incorrectly depending on trailing slash behavior, causing a 404.
Note: This is different from the front matter logo: field fix in PR #94, which only applies to layout template rendering.
Suggested fix
Use an absolute path:
<img src="/project/exomiser/Exomiser-team-May2022%20-%201%20(1).jpeg" width="40%">
Source
Identified via broken link checker audit (Feb 2026).
Problem
The Exomiser project page (
project/exomiser/index.md, line 28) has an inline<img>tag in the markdown body with a relative path:The image file exists at
project/exomiser/Exomiser-team-May2022 - 1 (1).jpeg, but the relativesrccan resolve incorrectly depending on trailing slash behavior, causing a 404.Note: This is different from the front matter
logo:field fix in PR #94, which only applies to layout template rendering.Suggested fix
Use an absolute path:
Source
Identified via broken link checker audit (Feb 2026).