Consider this code:
<table>
<$list filter="[tag[Contact]]">
<tr><td><$link /> </td>
<td>{{!!telephone}} </td></tr>
</$list>
</table>
This produces a two-column table. Details of one contact in one row. Is this the best/ standard way of doing things?
And what if I wan to have details of two contacts in one row? Something like this:
|Contact 1 | 11111111|Contact 2 | 22222222|
Merely adding another does not work. Because the list is still pointing to the same tiddler.
How do I make list advance to the next item?
Moreover, what if I find even two in a row table too narrow and want to have three/ four/ five contacts in a row?