-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtarot.xsl
44 lines (40 loc) · 1.36 KB
/
tarot.xsl
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
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent="yes" encoding="UTF-8"/>
<xsl:template match="/">
<html>
<head>
<title>Карти Таро</title>
<style>
/* Додайте стилі за бажанням */
</style>
</head>
<body>
<h1><xsl:value-of select="/Deck/title"/></h1>
<p><xsl:value-of select="/Deck/description"/></p>
<h2>Старші Аркани</h2>
<ul>
<xsl:for-each select="/Deck/cards/arcana/major/cards/card">
<li>
<h3><xsl:value-of select="@title"/></h3>
<p><xsl:value-of select="description"/></p>
</li>
</xsl:for-each>
</ul>
<h2>Молодші Аркани</h2>
<xsl:for-each select="/Deck/cards/arcana/minor/suits/*">
<h3><xsl:value-of select="name()"/></h3>
<p><xsl:value-of select="description"/></p>
<ul>
<xsl:for-each select="cards/card">
<li>
<h4><xsl:value-of select="@title"/></h4>
<p><xsl:value-of select="description"/></p>
</li>
</xsl:for-each>
</ul>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>