You need to add comments to the company blog. What is the most semantic markup for a list of comments?
<div typeof="comments"> <h3>Comments</h3> <div typeof="comment">First comment.</div> <div typeof="comment">Second comment.</div> </div>
The <article> HTML element represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). Example:a user-submitted comment. Source
The <article> HTML element represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). Example:a user-submitted comment.
<aside> <h3>Comments</h3> <article>First comment.</article> <article>Second comment.</article> </aside>
<div aria="dpub-comments"> <h3>Comments</h3> <div aria="dpub-comment">First comment.</div> <div aria="dpub-comment">Second comment.</div> </div>
<aside> <h3>Comments</h3> <aside>First comment.</aside> <aside>Second comment.</aside> </aside>