source: main/trunk/greenstone3/web/interfaces/oran/transform/pages/home.xsl@ 24149

Last change on this file since 24149 was 24149, checked in by sjm84, 13 years ago

Adding authenication to the oran skin (and some other tidying)

File size: 1.2 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="java util">
9
10 <!-- use the 'main' layout -->
11 <xsl:include href="layouts/main.xsl"/>
12
13 <!-- set page title -->
14 <xsl:template name="pageTitle"><gslib:siteName/></xsl:template>
15
16 <!-- set page breadcrumbs -->
17 <xsl:template name="breadcrumbs"></xsl:template>
18
19 <!-- the page content -->
20 <xsl:template match="/page/pageResponse">
21
22 <div id="quickSearch">
23 <gslib:crossCollectionQuickSearchForm/>
24 </div>
25
26 <h2><gslib:selectACollectionTextBar/></h2>
27
28 <div id="collectionLinks">
29 <xsl:for-each select="collectionList/collection">
30 <gslib:collectionLinkWithImage/>
31 </xsl:for-each>
32 <br class="clear"/>
33 </div>
34
35
36 <gslib:serviceClusterList/>
37
38 <xsl:for-each select="serviceList/service[@type='query']">
39 <gslib:serviceLink/><br/>
40 </xsl:for-each>
41
42 <xsl:for-each select="serviceList/service[@type='authen']">
43 <gslib:authenticationLink/><br/>
44 </xsl:for-each>
45
46 </xsl:template>
47
48</xsl:stylesheet>
49
50
Note: See TracBrowser for help on using the repository browser.