source: greenstone3/trunk/web/interfaces/oran/transform/home.xsl@ 18617

Last change on this file since 18617 was 18617, checked in by oranfry, 15 years ago

a sample skin in progress

File size: 1.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4 xmlns:java="http://xml.apache.org/xslt/java"
5 xmlns:util="xalan://org.greenstone.gsdl3.util.XSLTUtil"
6 xmlns:gslib="http://www.greenstone.org/skinning"
7 extension-element-prefixes="java util"
8 exclude-result-prefixes="util java util">
9
10 <xsl:template match="page/pageResponse">
11
12 <!-- the main page layout template is here -->
13 <html>
14
15 <head>
16 <title><gslib:homePageTitle/></title>
17 <link rel="stylesheet" href="interfaces/oran/style/core.css" type="text/css"/>
18 </head>
19
20 <body><gslib:textDirectionAttribute/>
21
22 <div id="container">
23 <gslib:displayErrorsIfAny/>
24
25 <div id="banner">
26 <h1>My Greenstone Library /</h1>
27 <h2>Home</h2>
28 <div class="corner" id="cornerTopLeft"><xsl:text> </xsl:text></div>
29 <div class="corner" id="cornerTopRight"><xsl:text> </xsl:text></div>
30 </div>
31
32 <div id="content">
33
34 <div id="quickSearch">
35 <gslib:crossCollectionQuickSearchForm/>
36 </div>
37
38 <h2><gslib:selectACollectionTextBar/></h2>
39
40 <div id="collectionLinks">
41 <xsl:for-each select="collectionList/collection">
42 <gslib:collectionLinkWithImage/>
43 </xsl:for-each>
44 <br class="clear"/>
45 </div>
46
47
48 <gslib:serviceClusterList/>
49
50 <xsl:for-each select="serviceList/service[@type='query']">
51 <gslib:serviceLink/><br/>
52 </xsl:for-each>
53
54 </div>
55
56 <div id="footer">
57 <gslib:poweredByGS3TextBar/>
58 <div class="corner" id="cornerBottomLeft"><xsl:text> </xsl:text></div>
59 <div class="corner" id="cornerBottomRight"><xsl:text> </xsl:text></div>
60 </div>
61
62 </div>
63
64 </body>
65 </html>
66 </xsl:template>
67
68</xsl:stylesheet>
69
70
Note: See TracBrowser for help on using the repository browser.