mirror of
https://gitlab.com/tutorial-java-rafa-munoz/tutorial-java-2024-25/LMSGI-2024-25.git
synced 2025-11-09 09:57:39 +01:00
61 lines
1.2 KiB
XML
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>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|