﻿<?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" /> 
<xsl:template match="rss/channel"> 
<style type="text/css"> 
.twit_tweet a { 
font-size: 13px; 
color: #111111; 
width: 400px; 
} 
.twit_date { 
font-size: 12px; 
color: #333333; 
font-style: italic; 
} 
.twit_holder { 
padding-bottom: 15px; 
width: 500px; 
} 
</style> 
<xsl:apply-templates select="item" /> 
</xsl:template> 
<xsl:template match="item"> 
<div class="twit_holder"> 
<div class="twit_tweet"><a target="_blank" href="{link}"><xsl:value-of select="description" disable-output-escaping="yes"/></a></div> 
<div class="twit_date"><xsl:value-of select="substring-before(pubDate,' +0000')" /></div> 
</div> 
</xsl:template> 
</xsl:stylesheet>

