Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Stylesheets/mapstylesheet.xsl
blob: 1e207a88411c4fcf1b94b2c3688acbf3aff60e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!-- Copyright (C) IBM Corporation 2008 -->
<?xml version="1.0"?>
<html xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xsl:version="1.0">
<head>
	<title><xsl:value-of select="map/@title" /></title>
	<link rel="stylesheet" type="text/css" href="mapstyle.css" title="Selected Stylesheet" />
</head>
<body>
	<h1>
		<xsl:value-of select="map/@title" />
	</h1>

	<xsl:for-each select="map">
		<li>
		<xsl:for-each select="topicref">
			<ul><a><xsl:attribute name="href">
				<xsl:value-of select="@href" />
			</xsl:attribute> 
			<xsl:value-of select="@navtitle" /></a></ul>
		</xsl:for-each>
		</li>
	</xsl:for-each>
</body>
</html>