I have a link list, where every item is associated with a short description and some meta info such as pubdate, author etc. How should I markup this in html5?
<ul>
<li>
<section> .... OR ARTICLE?
<header>
<h1>title</h1>
pubdate, author, etc
</header>
shortdesc
</section>
</li>
.... repeat
</ul>
Do you think it is a good idea to use sections/article?
Or are plain <li>
s better?
Article or section?
IMPORTANT NOTE: every item does not contain full content (article), just a short description and the link to the page that actually contains the article.
I'm also interested in a SEO point-of-view!