Files
LMSGI-2024-25/Unidad_06_XSL/Ejercicios/01_Ejercicio_Comida_Navidad/navidad.xsl
2025-04-07 12:01:02 +02:00

61 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" encoding="iso-8859-1"/>
<xsl:template match="/celebracion">
<html>
<head>
<title><xsl:value-of select="@name"/></title>
<xsl:call-template name="css"/>
</head>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="menu">
<h1>Platos</h1>
<xsl:for-each select="plato">
<xsl:sort select="." order="ascending"/>
<p style="font-weight: bolder">
<xsl:value-of select="."/>
</p>
</xsl:for-each>
</xsl:template>
<xsl:template match="espirituosas">
<h1>Espirituosas</h1>
<xsl:apply-templates select="bebida">
<xsl:sort select="@nombre" order="ascending"/>
</xsl:apply-templates>
</xsl:template>
<xsl:template match="bebida">
<p style="font-weight: bolder">
<xsl:value-of select="@nombre"/>
</p>
</xsl:template>
<xsl:template name="css">
<style>
body{
background: red;
color: white;
}
</style>
</xsl:template>
</xsl:stylesheet>