<table cellpadding="5">

 <thead>

 <tr>

 <th width="90%">URL</th>

 <th width="10%">Priority</th>

 </tr>

 </thead>

 <tbody>

 <xsl:for-each select="sitemap:urlset/sitemap:url">

 <tr>

 <td>

 <xsl:variable name="itemURL">

 <xsl:value-of select="sitemap:loc"/>

 </xsl:variable>

 <a href="{$itemURL}">

 <xsl:value-of select="sitemap:loc"/>

 </a>

 </td>

 <td>

 <xsl:value-of select="concat(sitemap:priority*100,'%')"/>

 </td>

 </tr>

 </xsl:for-each>

 </tbody>

 </table>
