-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollection.xsl
22 lines (22 loc) · 1.01 KB
/
collection.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<html>
<head>
<title><xsl:value-of select="/document/@title"/></title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<h1><xsl:value-of select="/document/content/heading"/></h1>
<p><xsl:value-of select="/document/content/description"/></p>
<ul>
<xsl:for-each select="/document/collection/link">
<li><a href="{@href}"><xsl:value-of select="@title"/></a></li>
</xsl:for-each>
</ul>
</body>
</html>
</xsl:template>
</xsl:stylesheet>