<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:template match="/">
    <table width="100%" style="border-collapse:collapse;" border="1" cellpadding="6">
      <xsl:apply-templates select="/forum_home/Category"></xsl:apply-templates>
    </table>
  </xsl:template>

  <xsl:template match="/forum_home/Category">
    <tr  style="color:#ffffff;">
      <td colspan="5" background="/forum/template/ntol/tcat.gif" style="text-align:right;padding-right:10px;">
        <b>
            <xsl:value-of select="CatName"></xsl:value-of>
        </b>
      </td>
    </tr>
    <tr style="background:#DAECDB;text-align:center;">
      <td style="text-align:center;width:5%;">
      </td>
      <td style="width:40%;">
        <b>Bài mới</b>
      </td>
      <td style="width:45%;">
        <b>Diễn đàn</b>
      </td>
      <td style="width:5%;">
        <b>Chủ đề</b>
      </td>
      <td style="width:5%;">
        <b>Bài</b>
      </td>
    </tr>
    <xsl:apply-templates select="Forum"></xsl:apply-templates>
  </xsl:template>

  <xsl:template match="Forum">
    <tr style="height:60px;">
      <td style="text-align:center;">
        <img src="/forum/template/ntol/forum.gif"/>
      </td>
      <td style="text-align:right;">
        <xsl:if test="UserName!=''">
          <a style="color:#00560A;">
            <xsl:attribute name="href">
              <xsl:value-of select="topic_url"></xsl:value-of>
            </xsl:attribute>
            <xsl:value-of select="TopicName"></xsl:value-of>
          </a>
          <br />
          <a style="color:#000000;">
            <xsl:attribute name="href">
              <xsl:value-of select="mem_url"></xsl:value-of>
            </xsl:attribute>
            <b>
              <xsl:value-of select="UserName"></xsl:value-of>
            </b>
          </a>
          <br/>
          <i>
            <xsl:value-of select="PostedDate"></xsl:value-of>
          </i>
        </xsl:if>
      </td>
      <td style="background-color:#FAFAFA;">
        <a style="color:#00560A;font-weight:bold;">
          <xsl:attribute name="href">
            <xsl:value-of select="link"></xsl:value-of>
          </xsl:attribute>
          <xsl:value-of select="Name"></xsl:value-of>
        </a>
        <br/>
        <xsl:value-of select="Description"></xsl:value-of>
      </td>
      <td style="text-align:center;">
        <xsl:value-of select="TotalTopic"></xsl:value-of>
      </td>
      <td style="text-align:center;">
        <xsl:value-of select="TotalReply"></xsl:value-of>
      </td>
    </tr>
  </xsl:template>
    
</xsl:stylesheet>

