source: trunk/gsdl3/transform/style.xsl@ 3312

Last change on this file since 3312 was 3312, checked in by kjdon, 22 years ago

slightly better xsl, separated style stuff into style.xsl

  • Property svn:keywords set to Author Date Id Revision
File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0"
3xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5<xsl:output method="html"/>
6
7<xsl:attribute-set name="body-style">
8 <xsl:attribute name="bgcolor">#ffffff</xsl:attribute>
9 <xsl:attribute name="text">#000000</xsl:attribute>
10 <xsl:attribute name="link">#006666</xsl:attribute>
11 <xsl:attribute name="alink">#cc9900</xsl:attribute>
12 <xsl:attribute name="vlink">#666633</xsl:attribute>
13 <xsl:attribute name="background">/gsdl3/images/chalk.gif</xsl:attribute>
14</xsl:attribute-set>
15
16
17<xsl:template name="greenstoneHead">
18<head>
19<title>New Zealand Digital Library</title>
20
21</head>
22</xsl:template>
23
24<xsl:template name="greenstonePageBanner">
25
26<!-- page banner (_style:pagebanner_) -->
27<center>
28<table width="537" cellspacing="0" cellpadding="0">
29 <tr valign="top">
30 <td rowspan="2" align="left"><center><img src="/gsdl3/images/nzdl2gr.gif" width="457" height="181" alt="The New Zealand Digital Library"/></center></td>
31 <td align="right"></td>
32 </tr>
33
34 <tr>
35 <td align="right"></td>
36 </tr>
37
38 <tr>
39 <td colspan="2"></td>
40 </tr>
41</table>
42</center>
43<!-- end of page banner -->
44
45</xsl:template>
46
47<xsl:template name="greenstoneFooter">
48</xsl:template>
49
50</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.