<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"    xmlns:atom="http://www.w3.org/2005/Atom"    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"    xmlns:foo="http://purl.org/rss/1.0/"    xmlns:dc="http://purl.org/dc/elements/1.1/"    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"    xmlns:admin="http://webns.net/mvcb/"    xmlns:content="http://purl.org/rss/1.0/modules/content/"    xmlns:wfw="http://wellformedweb.org/CommentAPI/"    version="1.0">    <xsl:output method="html"/>    <xsl:template match="/">		<xsl:element name="div"><xsl:attribute name="class">post</xsl:attribute>			<h3 class="title">Latest 20 Blogs <a href="http://www.blogger.com/profile/17651247628966936013" title="Blogger"><img src="http://www.stephenkropp.com/sdk/photos/blogger-32x32.png" alt="Blogger Icon" /></a></h3>			<p class="meta"><em>Last Updated: <xsl:value-of select="atom:feed/atom:updated" /> | <a href="http://stephenkropp.blogspot.com/">View All Blogs</a></em></p>		</xsl:element>			<xsl:for-each select="atom:feed/atom:entry">				<xsl:element name="div"><xsl:attribute name="class">post</xsl:attribute>					<xsl:element name="h3"><xsl:attribute name="class">title</xsl:attribute>						<xsl:element name="a">							<xsl:attribute name="href">								<xsl:value-of select="atom:link[@rel='alternate']/@href"/>							</xsl:attribute>							<xsl:value-of select="atom:title"/>						</xsl:element>					</xsl:element>					<xsl:if test="atom:published">						<xsl:element name="p"><xsl:attribute name="class">meta</xsl:attribute>							<xsl:element name="em">Published: <xsl:value-of select="atom:published"/>								<xsl:if test="atom:updated"> - Updated: <xsl:value-of select="atom:updated"/></xsl:if>							</xsl:element>						</xsl:element>					</xsl:if>					<xsl:element name="div"><xsl:attribute name="class">entry</xsl:attribute>						<xsl:if test="atom:content">							<xsl:if test="atom:content[@type='html']">								<xsl:value-of select="atom:content" disable-output-escaping="yes" />							</xsl:if>							<xsl:if test="atom:content[@type='text']">								<xsl:value-of select="atom:content" disable-output-escaping="no" />							</xsl:if>						</xsl:if>						<xsl:if test="atom:summary">							<xsl:if test="atom:summary[@type='html']">								<xsl:value-of select="atom:summary" disable-output-escaping="yes" />							</xsl:if>							<xsl:if test="atom:summary[@type='text']">								<xsl:value-of select="atom:summary" disable-output-escaping="no" />							</xsl:if>						</xsl:if>					</xsl:element>				</xsl:element>			</xsl:for-each>		</xsl:template></xsl:stylesheet>
