PythonIreland / PythonIreland/2026.pycon.ie
Add BlogPosting structured data to blog single template
Nobody has claimed this yet.
- Dominant language
- HTML
- Stars
- 1
- Forks
- 0
- Avg merge
- 10m
- Merged PRs (30d)
- 1
Description
Problem
Blog post pages render <article> HTML and og:type: article but emit only Organization + BreadcrumbList JSON-LD (inherited from the base partial). Blog posts have all the fields needed for a BlogPosting schema: title, description, date, and URL.
Missing this means no potential for Google Article rich results.
Proposed schema
```json
{
"@context": "https://schema.org",
"@type": "BlogPosting",
"headline": "{{ .Title }}",
"description": "{{ .Description }}",
"datePublished": "{{ .Date.Format "2006-01-02" }}",
"dateModified": "{{ .Lastmod.Format "2006-01-02" }}",
"url": "{{ .Permalink }}",
"publisher": {
"@type": "Organization",
"@id": "https://python.ie/#organization",
"name": "Python Ireland"
},
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "{{ .Permalink }}"
}
}
```
Files to change
layouts/blog/single.html— add<script type="application/ld+json">block- Consider also adding an
authorfield once blog authorship is established
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with layouts/blog/single.html and inspect the base partial that currently emits Organization and BreadcrumbList JSON-LD. Confirm the template values available for title, description, dates, and permalink, then verify the rendered page contains valid BlogPosting JSON-LD with the specified fields and publisher details.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- html
- Domain
- web-dev
- Issue type
- Feature
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Quiet
- Clarity
- Clearly specified
- Newbie friendliness
- 85/100