ref: e32330da41503781238c33e659e8e5e095662349
dir: /test/s.xml/
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" > <xsl:template match="/users"> <html> <body> <xsl:apply-templates select="user" /> </body> </html> </xsl:template> <xsl:template match="user"> <div> <h1>User: <xsl:value-of select="name" /></h1> <ul> <li>Login: <xsl:value-of select="@id" /></li> <li>Email: <xsl:value-of select="email" /></li> </ul> </div> </xsl:template> </xsl:stylesheet>