<?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" xmlns="http://www.w3.org/TR/REC-html40" result-ns=""> <xsl:template match="/"> <HTML xmlns=""> <BODY> <LINK REL="STYLESHEET" TYPE="text/css" href="g:/inetpub/wwwroot/rocket/stylesheets/themes/traditional/ ie5/traditional.css"/> <DIV CLASS="BoxCopy"> <xsl:value-of select="article/headline"/> </DIV> <DIV CLASS="deck"> <xsl:value-of select="article/deck"/> </DIV> <DIV CLASS="byline"> <xsl:value-of select="article/byline"/> </DIV> <DIV CLASS="aBody"> <xsl:apply-templates select="article/aBody"/> </DIV> </BODY> </HTML> </xsl:template> <xsl:template match="aBody"> <P xmlns=""> <xsl:apply-templates/> </P> </xsl:template> <xsl:template match="para1"> <P xmlns=""> <xsl:apply-templates/> </P> </xsl:template> ... additional template rules not shown. See online for complete listing </xsl:stylesheet>