About introducing my first Wordpress site. I understand that it helps if my loop invokes a common element, for example:
<div id="article-excerpt">
<div>Article Heading</div>
<div>Article Sub-heading</div>
</div>
When using Twitter Bootstrap or 960.gs, my feed spans multiple columns and multiple rows.
For example, articles are laid out horizontally through a nested grid of 5 columns. Every 5 items has a new line.
Row 1: [article div] [article div] [article div] [article div] [article div]
Row 1: [article div] [article div] [article div] [article div] [article div]
Row 1: [article div] [article div] [article div] [article div] [article div]
etc.
I will explain the following bit to verify that I have a fundamental understanding of how these systems work.
In 960.gs for nested meshes, I need to declare the first element and the last element in each line with classes alphaand omegaaccordingly:
<div id="article excerpt" class="alpha grid_1">
<div>Article Heading</div>
<div>Article Sub-heading</div>
</div>
Similarly, on Twitter Bootstrap, I need to put each line in its own DIV:
<div class="row">
<div id="article-excerpt" class="span1">
<div>Article Heading</div>
<div>Article Sub-heading</div>
</div>
<div id="article-excerpt" class="span1">
<div>Article Heading</div>
<div>Article Sub-heading</div>
</div>
<div id="article-excerpt" class="span1">
<div>Article Heading</div>
<div>Article Sub-heading</div>
</div>
<div id="article-excerpt" class="span1">
<div>Article Heading</div>
<div>Article Sub-heading</div>
</div>
<div id="article-excerpt" class="span1">
<div>Article Heading</div>
<div>Article Sub-heading</div>
</div>
</div>
, . , span1 grid_1 . , .
Wordpress . - .
, , , :
<div class="grid_5">
<LOOP> <div class="grid_1">generic article</div> </LOOP>
</div>