I'm implementing html5 into a blog template and am I little confused as to how to label different 'sections' on the front page. It's a magazine theme, so all topics are related loosely. For the sake of argument, let's say it is a movie site and I have news sections, trailer sections, and interviews. Would it be appropriate on my index to this:
<section>
<h1>Trailers</h1>
<ul>
<li><a href="article">article</a></li>
<li><a href="article">article</a></li>
<li><a href="article">article</a></li>
<li><a href="article">article</a></li>
</ul>
</section>