-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(gatsby-starter-blog): Use ol
for blog post list
#26601
fix(gatsby-starter-blog): Use ol
for blog post list
#26601
Conversation
Could you give us more information on why this would help SEO? Any blog posts/documentation that we can look at? |
https://www.w3.org/TR/html4/struct/lists.html Even independent from any SEO improvement this is, in general, a good practise how to structure your content. |
Enhance blog HTML markup by displaying all blog posts as ordered list
ol
for blog post list
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! 👍
Description
Since posts are a collection of items that are sorted/ordered by date, they should be rendered as an ordered list in order to improve the page structure which will help search engines and screen readers to interpreter the content.
Documentation
Related Issues
Moved from gatsbyjs/gatsby-starter-blog#202