I'm doing the marking of the products listed in home, I'm using HTML5 to structure the pages, my intention is to define a semantic content. So I came across the following markup possibilities:
Involve the product window with a section and list the products as a list.
<section>
<h1>Semana da tecnologia</h1> <!-- Titulo da vitrine de produtos-->
<ul>
<li>
<div></div> <!-- Aqui é o wrap do produto (titulo, foto, preco, etc...) -->
</li>
<li>
<div></div> <!-- Aqui é o wrap do produto (titulo, foto, preco, etc...) -->
</li>
</ul>
</section>
Or rather use list article for each product
<section>
<h1>Semana da tecnologia</h1> <!-- Titulo da vitrine de produtos-->
<article></article><!-- Aqui é o wrap do produto (titulo, foto, preco, etc...) -->
<article></article><!-- Aqui é o wrap do produto (titulo, foto, preco, etc...) -->
</section>
I believe that both forms offer a semantic markup for content, but which one should I choose?