<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="html" encoding="utf-8"/>

  <xsl:template match="/">
    <table>
      <xsl:for-each select="rss/channel/item">
        <tr>
          <td>
            <span class="ms-announcementtitle">
              <xsl:element name="a">
                <xsl:attribute name="href">
                  <xsl:value-of select="concat('http://www.dotnettipoftheday.com/Blog.aspx?Id=', guid)" />
                </xsl:attribute>
                <xsl:value-of select="title"/>
              </xsl:element>
            </span>
          </td>
        </tr>
        <tr>
          <td class="ms-vb">
            <xsl:value-of disable-output-escaping="yes" select="description"/>
          </td>
        </tr>
        <tr>
          <td class="ms-vb">
            <xsl:value-of select="pubDate"/>
          </td>
        </tr>
      </xsl:for-each>
    </table>
  </xsl:template>

</xsl:stylesheet>


