I have a list of links where each element is associated with a brief description and some meta-information like pubdate, author, etc. How do I tag this in html5?
<ul> <li> <section> .... OR ARTICLE? <header> <h1>title</h1> pubdate, author, etc </header> shortdesc </section> </li> .... repeat </ul>
Do you find it appropriate to use sections / articles?
Or are simple <li>
better?
Article or section?
IMPORTANT NOTE: each element does not contain the full content (article), just a short description and a link to the page that actually contains the article.
I am also interested in the SEO point of view!
source share