fix: repair template rendering on screenshots page #236
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.
The
screenshots.htmlpage was displaying raw placeholder text such as{page.title}and{page.content}instead of the actual page values.✔ What I changed
I updated the placeholder format to use the proper double-brace style:
{page.title}→{{ page.title }}{page.content}→{{ page.content }}{page.keywords}→{{ page.keywords }}{page.summary}→{{ page.summary }}I also updated the page heading:
<h1>Page</h1>→<h1>{{ page.title }}</h1>✔ Why this helps
The file previously used an incorrect placeholder format, causing the website to show them literally.
The corrected format matches the placeholder style used in the rest of the project.
This PR fixes the placeholder formatting.
If additional configuration is required to process the page during site generation, it can be handled separately.
No functional code changes — template text only.