-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEjercicio1_b.xslt
48 lines (44 loc) · 1.52 KB
/
Ejercicio1_b.xslt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<head>
<title>Biblioteca</title>
</head>
<body>
<h1>Listado Libros</h1>
<ul>
<xsl:apply-templates />
</ul>
</body>
</html>
</xsl:template>
<xsl:template match="libro">
<li>
<xsl:text> Título - </xsl:text>
<xsl:value-of select="titulo" />
<xsl:text>(</xsl:text>
<xsl:value-of select="autor" />
<xsl:text> - </xsl:text>
<xsl:value-of select="fechaPublicacion/@año" />
<xsl:text>)</xsl:text>
</li>
</xsl:template>
</xsl:stylesheet>
<!-- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<html>
<head>
<title>Biblioteca</title>
</head>
<body>
<h1>Listado Libros</h1>
<ul>
<li>Título - La vida está en otra parte( Milan Kundera - 1973)</li>
<li>Título - Pantaleón y las visitadoras( Mario Vargas Llosa - 1973) </li>
<li>Título - Conversación en la catedral( Mario Vargas Llosa - 1969) </li>
<li>Título - Reina Roja( Juan Gómez Jurado - 2010) </li>
<li>Título - Loba Negra( Juan Gómez Jurado - 2014) </li>
<li>Título - Rey Blanco( Juan Gómez Jurado - 2018) </li>
</ul>
</body>
</html> -->