I assume you can use microformats or an html 5 time
element:
<time date="2011-10-31">2011-10-31</time>
Perhaps with the pubdate
(Boolean) attribute, define the time as the publication date:
<time date="2011-10-31" pubdate>
You may need to wrap individual components in span
, perhaps every day, hour, minute, second ... as an individual counter, so that:
<time date="2011-10-31" pubdate><span class="year">2011</span>-<span class="month">11</span>-<span class="day">31</span></time>
Literature:
source share