Lists are an important element in the structure of a website. Definition lists, ordered lists and unordered lists each have an official W3C use guideline but semantic interpretation of implementation methods are varied.
Every so often, a sensible method arises.
Happy Cog got markup and style assistance from Dan Mall who wrote The Agency Formerly (and Currently) Known as Happy Cog which introduced the redesign. It’s a pleasant article but it’s the comments that should be read. Especially, those by Matthew Pennell.
The expanded use of an ordered/unordered list embedded with header and paragraph(s) for article titles and summaries of the articles makes sense. [Note: The Happy Cog site was marked-up with it.]
The (reduced) HTML,
<ol>
<li>
<h3>[Title]</h3>
<p>[Date]</p>
<p>[Summary paragraph]</p>
</li>
<li>
<h3>[Title]</h3>
<p>[Date]</p>
<p>[Summary paragraph]</p>
</li>
[...]
</ol>
Simple semantics.
I’ll use it. I mean, it’s got to be an acceptable, semantic method if Matthew Pennell suggested it and Dan Mall implemented it and Jeffrey Zeldman approved it, doesn’t it.

