I've been reading a lot about Semantic HTML lately and I've been looking at examples at MDN and www.w3.org. However I can not find an explicit answer to this:
Is it semantically correct to have a section with articles as content?
Something along the lines of this:
<section>
<h2>Latest Posts</h2>
<article></article>
<article></article>
<article></article>
</section>
Closest I've found to that structure is what Morten Rand did at his site: https://mor10.com/ But he's not wrapping the articles with a section but a main tag instead.