I have a question about the best HTML5 markup for a forum like WebmasterWorld. I mean the discussion pages. Is this the best structure? Or maybe <h1> should be right above <body> (but then none of the <article> would have h1).. Someone suggested to use <section> instead of <article> for posts, but it's not correct solution (because each post can be treated like a separate content).
Note: since {post1} and {post2} should discuss the same topic, they are enclosed by the main <article>. Is it the best way to do it...?
<html>
<body>
<article>
<header>
<h1>Discussion Title</h1>
</header>
<article>
{post1}
</article>
<article>
{post2}
</article>
</article>
</body>
</html>