While exploring the blog_index_page.html template while running the bakerydemo locally, I noticed that the blog tag filters are rendered as a plain <ul> list.
Since this section is used to navigate between blog tags, it might be more semantically correct to wrap it in a <nav> element with an appropriate label. This could improve accessibility and help screen readers understand that this section is navigation.
Example idea:
<nav aria-label="Blog tag filters">
<ul class="blog-tags">
...
</ul>
</nav>
If this sounds like a useful improvement, I’d be happy to work on a pull request.