Layout style contain HTML template. Here is the example.
<table width="100%" border="0" cellpadding="2" cellspacing="0">
<tr class="sectiontableheader">
<th class="sectiontableheader"> Title </th>
<th class="sectiontableheader"> Description </ht>
</tr>
[CYCLE]
<tr class="sectiontableentry[ROW]">
<td valign="top">[TITLE] <i>([CATEGORY])</i></td>
<td valign="top">[ADDITIONAL]</td>
</tr>
[/CYCLE]
</table>
Where
- [TITLE] Is a title of the article as a link to article
- [CATEGORY] is the name of the category as a link to category
- [ADDITIONAL] is an additional field of the type
- [HITS] is a number of hits of the article
- [RATING] is a rating box
- [COMMENTS] is a number of comments for this article
- [ROW] is a number 1 or 2 change with every row.
- [CYCLE] ... [/CYCLE] is a block that is fetched for every article
Here is another example
<p>Here is the list of the articles</p>
[CYCLE]
<div>
<h3>[TITLE]</h3>
<span class="small">Hits ([HITS]) | Comments ([COMMENTS])<span><br />
[RATING]<br />
[ADDITIONAL]
</div>
[/CYCLE]
And another example formatted like menu
<ul class="menu">
[CYCLE]
<li>[TITLE]
<span class="small">Hits ([HITS]) | Comments ([COMMENTS])<span>
</li>
[/CYCLE]
<ul>