Created
December 3, 2014 19:43
-
-
Save labra/a244f54828f3493b78e7 to your computer and use it in GitHub Desktop.
Ejemplo XSLT - pedido.xsl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet version="1.0" | |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:template match="/"> | |
<html> | |
<link rel="stylesheet" href="pedido.css" /> | |
<body> | |
<h1>Lista de productos</h1> | |
<ul><xsl:apply-templates /></ul> | |
</body> | |
</html> | |
</xsl:template> | |
<xsl:template match="producto"> | |
<li> | |
<xsl:value-of select="nombre" /> | |
</li> | |
</xsl:template> | |
</xsl:stylesheet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment