Code: Select all
<table>
<tr>
<th>Company</th>
<th>Job Title</th>
<th>Location</th>
<th>Schedule</th>
</tr>
{section name=numloop loop=$items}
<tr>
<td class="name">{$items[numloop].company}</td>
<td>{$items[numloop].title}</td>
<td><a href="{$items[numloop].link}">{$items[numloop].location}</a></td>
<td>{$items[numloop].schedule}</td>
</tr>
{/section}
</table>Appreciate your help
Jeff

