<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxml="urn:schemas-microsoft-com:xslt" xmlns:media="http://search.yahoo.com/mrss/"><xsl:output method="html" indent="yes" />	<xsl:template match="/">		<div class="post">			<h3>Latest 20 Links <a href="http://delicious.com/stevekropp" title="Delicious"><img src="http://www.stephenkropp.com/sdk/photos/delicious-32x32.png" alt="Delicious Icon" /></a></h3>			<p class="meta"><em><!--Last Updated: <xsl:value-of select="pubDate" /> | --><a href="{//channel/link}">View All Links</a></em></p>		</div>		<xsl:apply-templates select="//item" />	</xsl:template>	<xsl:template match="item">		<div class="post">			<h3 class="title">				<a href="{link}" title="{title}" target="_blank">					<xsl:value-of select="title" />				</a>			</h3>			<p class="meta"><em><xsl:value-of select="pubDate" /> | Tags: <xsl:for-each select="category"><!--<xsl:element name="a"><xsl:attribute name="href"><xsl:value-of select="@domain"/></xsl:attribute>--><xsl:value-of select="." /><!--</xsl:element>-->, </xsl:for-each></em></p>			<div class="entry">				<xsl:value-of select="description" disable-output-escaping="yes" />			</div>		</div>	</xsl:template></xsl:stylesheet>
