<table xsl:if="item" xsl:comment="Table 1">
<tr>
<th xsl:if="@num">№</th>
<th xsl:if-attr="@title" xsl:attr-class="sel">Название</th>
<th xsl:if-attr="@date" xsl:attr-class="sel" xsl:text="Дата"/>
</tr>
<tr xsl:each="item">
<td xsl:if="../@num" xsl:val="position()"/>
<td xsl:val="title"/>
<td xsl:apply="date" xsl:mode="format-date"/>
</tr>
</table>