source: trunk/gsdl3/interfaces/default/transform/applet.xsl@ 3790

Last change on this file since 3790 was 3655, checked in by kjdon, 21 years ago

tidy up

  • Property svn:keywords set to Author Date Id Revision
File size: 736 bytes
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:include href="style.xsl"/>
6
7<xsl:output method="html"/>
8
9<xsl:template match="page">
10
11<xsl:variable name="collName"><xsl:value-of select="request/paramList/param[@name='c']/@value"/></xsl:variable>
12<html>
13<xsl:call-template name="greenstoneHead"/>
14<body xsl:use-attribute-sets="body-style">
15<center>
16<xsl:call-template name="collectionPageBanner">
17<xsl:with-param name="collName" select="$collName"/>
18</xsl:call-template>
19<p/>
20<xsl:copy-of select="applet"/>
21<xsl:call-template name="greenBar"/>
22</center>
23<xsl:call-template name="greenstoneFooter"/>
24</body>
25</html>
26</xsl:template>
27
28
29</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.