source: main/trunk/greenstone3/web/interfaces/default/transform/layouts/main.xsl@ 33637

Last change on this file since 33637 was 33637, checked in by kjdon, 4 years ago

we can now use gsf and gslib in layout files.

File size: 2.8 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4
5 xmlns:java="http://xml.apache.org/xslt/java"
6 xmlns:util="xalan://org.greenstone.gsdl3.util.XSLTUtil"
7 xmlns:gslib="http://www.greenstone.org/skinning"
8 xmlns:gsf="http://www.greenstone.org/greenstone3/schema/ConfigFormat"
9
10 xmlns:lxslt="http://xml.apache.org/xslt"
11 xmlns:result="http://www.example.com/results"
12 xmlns:exsl="http://exslt.org/common"
13
14 extension-element-prefixes="java util result exsl"
15 exclude-result-prefixes="util java util gsf gslib">
16
17 <xsl:import href="header.xsl"/>
18 <xsl:include href="formatmanager.xsl"/>
19
20
21 <!-- put the URL or path of your site here site -->
22 <!-- eg 'http://www.example.com/mysite' or '/mysite' -->
23 <xsl:template name="siteURL"><xsl:value-of select="/page/pageResponse/metadataList/metadata[@name='siteURL']"/></xsl:template>
24
25
26 <!-- the output format for this layout is html -->
27 <xsl:output method="html" omit-xml-declaration="yes"/>
28
29 <xsl:template match="/">
30 <xsl:call-template name="mainTemplate"/>
31 </xsl:template>
32
33 <!-- the main layout is defined here -->
34 <xsl:template name="mainTemplate">
35
36 <html>
37
38 <head>
39 <!-- ***** in header.xsl ***** -->
40 <xsl:call-template name="create-html-header"/>
41 <xsl:call-template name="basketHeadTags"/>
42 </head>
43
44 <body><xsl:call-template name="textDirectionAttribute"/><xsl:call-template name="actionClass"/>
45
46 <!--<xsl:call-template name="displayErrorsIfAny"/>-->
47 <a name="top"><xsl:text> </xsl:text></a>
48
49 <div id="topArea" class="ui-state-default ui-corner-top">
50 <table>
51 <tbody>
52 <tr>
53 <td><div id="breadcrumbs"><xsl:call-template name="breadcrumbs"/><xsl:text> </xsl:text></div></td>
54
55 <!-- ***** in header.xsl ***** -->
56 <td><xsl:call-template name="home-help-preferences"/></td>
57 </tr>
58 </tbody>
59 </table>
60 </div>
61
62 <div id="container" class="ui-corner-all">
63
64 <!-- ***** in header.xsl ***** -->
65 <xsl:call-template name="create-banner"/>
66
67 <xsl:if test="/page/pageRequest/paramList/param[(@name='formatedit') and (@value='on')]">
68 <xsl:call-template name="formatmanagerpre"/>
69 </xsl:if>
70
71 <div id="gs_content" class="ui-widget-content">
72 <!--
73 show the content of the page.
74 to customise this part, edit the xsl file for the page you want to edit
75 -->
76 <xsl:apply-templates select="/page"/>
77
78 </div>
79
80 <xsl:call-template name="gs_footer"/>
81 </div>
82 </body>
83 </html>
84 </xsl:template>
85
86 <!-- Template controlling the footer. -->
87 <xsl:template name="gs_footer">
88 <div id="gs_footer" class="ui-widget-header ui-corner-bottom">
89 <a href="http://www.greenstone.org"><gslib:poweredByGS3TextBar/></a>
90 </div>
91 </xsl:template>
92
93
94
95</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.