Meta is a definition list in a wrapper div. We use meta at the start of a work, a series listing, a user profile or collection or prompt. It shows metadata: all the tags, associations, and stats we hold on that object. Sometimes it includes a brief note, but normally it's tags and stats and status type data.
The present meta style is declared in meta.css. It's a group
[always] {sometimes}
[div wrapper] [dl meta] [dt {tag class}] [dd] {ul tags} [/dd] [dt] [dd] {blockquote userstuff} [/dd] {dt stats} {dd stats} [dl stats] [dt] [dd] [/dl] [div clear] {/dd} [/dl] [/wrapper]
Meta is always a dl wrapped in a div.
You can never have any other kind of meta.
The dd
s may contain anything, but normally contains dates and times, lists of tags, lists of mods or owners or other associations like Part X of Series Y, and a stats block at the end. Stats always comes at the end.
<div class="wrapper">
<dl class="meta">
<dt class="rating">Rating </dt>
<dd class="rating">Mature </dd>
<dt class="warning">Warning </dt>
<dd class="warning">
<ul class="tags commas">
<li> <a class="tag href="/..</a></li>
<li> <a class="tag href="/..</a></li>
</ul>
</dd>
<dt class="stats">Stats </dt>
<dd class="stats">
<dl>
<dt>Word Count</dt>
<dd>1234</dd>
</dl>
<div class="clear"></div>
</dd>
</dl>
</div>
It's important to always remember to clear a stats pattern in a meta pattern. You can look for the recurring issues on this in google code, if you're interested. If you need to turn that clear off, the path is: .meta .stats .clear {clear:none;}
Return to the documentation index.