blob: d2791cec62dcf146f442bd1cc944dc6cef60f0dd (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?xml version="1.0"?>
<!-- $NetBSD: index.xsl,v 1.1.1.1 2001/04/15 02:56:38 jwise Exp $ -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="page">
<html>
<head>
<title><xsl:value-of select="@title" /></title>
</head>
<body bgcolor="#ADCFD4">
<p><br /></p>
<table border="0" width="60%" bgcolor="#000000" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="80%">
<table border="0" width="100%" cellpadding="4">
<tr>
<td width="80%" bgcolor="#c0c0c0" align="right">
<br />
<h1><big><xsl:value-of select="@title" /></big></h1>
</td>
</tr>
<tr>
<td width="100%" bgcolor="#ffffff" align="left">
<xsl:apply-templates/>
</td>
</tr>
<tr>
<td width="100%" bgcolor="#ffffff" align="left">
<img align="right" src="sitedrivenby.gif" alt="Site Driven by NetBSD!" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="pre|b|i|p|a|ul|li|img|dl|dt|dd">
<xsl:copy-of select="."/>
</xsl:template>
</xsl:stylesheet>
|