<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="/forum_show">
    <table width="100%" cellspacing="3" cellpadding="4">
      <xsl:apply-templates select="Topic"></xsl:apply-templates>
    </table>
  </xsl:template>

  <xsl:template match="Topic">
    <tr>
      <td>
        <a>
          <xsl:attribute name="href">
            <xsl:value-of select="link"></xsl:value-of>
          </xsl:attribute>
          [<xsl:value-of select="Creator"></xsl:value-of>]
          <xsl:value-of select="ModifyDate"></xsl:value-of>
          [<xsl:value-of select="ModifyUser"></xsl:value-of>]
          (<xsl:value-of select="TotalReply"></xsl:value-of>)(<xsl:value-of select="TotalView"></xsl:value-of>)
          <xsl:value-of select="TopicName"></xsl:value-of>
        </a>
      </td>
    </tr>
  </xsl:template>
</xsl:stylesheet>

