The GEN:FooterTemplate tag provides you finer control of the layout by placing a footer at the bottom of the tabel. The contents of the FooterTemplate tag are substituted at the bottom of the table.
In general you can specify the layout of the footer area outside of the ItemTemplate tag without using a FooterTemplate.
HTML Layout Pages and Page Templates.
The FooterTemplate tag does not require a Name attribute and it can only be specified within a Table tag. The FooterTemplate tag is optional.
None
<GEN:Table Name=”EmployeesTable”>
<table>
<!-- header row -->
<GEN:HeaderTemplate>
<tr><td
colspan=10>Header Row</td></tr>
</GEN:HeaderTemplate>
<!-- repeating row
template -->
<GEN:ItemTemplate>
<tr
bgcolor=”white”>
<td><GEN:FieldValue Name=”FirstName”/></td>
<td><GEN:FieldValue Name=”LastName”/></td>
<td><GEN:FieldValue Name=”Title”/></td>
<td><GEN:FieldValue Name=”Address”/></td>
<td><GEN:FieldValue Name=”City”/></td>
<td><GEN:FieldValue Name=”State”/></td>
<td><GEN:FieldValue Name=”ZipCode”/></td>
<td><GEN:FieldValue Name=”Country”/></td>
<td><GEN:FieldValue Name=”Phone”/></td>
</tr>
</GEN:ItemTemplate>
<!-- table footer -->
<GEN:FooterTemplate>
<tr><td
colspan=10>Table Footer Row</td></tr>
</GEN:FooterTemplate>
</table>
</GEN:Table>