source: greenstone3/trunk/web/ui/skins/oran/xsl/collecthome.xsl@ 16315

Last change on this file since 16315 was 16315, checked in by davidb, 16 years ago

Merging of skin work with the main trunk

File size: 1.6 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2
3<xsl:stylesheet version="1.0"
4xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5xmlns:gslib="http://www.greenstone.org/skinning">
6
7
8<xsl:import href="./util.xsl"/>
9
10
11
12
13
14<xsl:template match="/">
15 <html>
16 <head>
17 <title>
18 <gslib:metadataItem name="siteName" /> / <gslib:metadataItem name="collectionName" />
19 </title>
20 <gslib:css/>
21 <gslib:js/>
22 </head>
23 <body>
24 <div id="container">
25
26 <div id="header">
27 <div class="title_minor">
28
29 <a href="{$site_homeUrl}">
30 <gslib:metadataItem name="siteName" />
31 </a>
32 </div>
33
34 <div class="title_major">
35 <gslib:metadataItem name="collectionName" />
36 </div>
37
38 <div id="tablist" class="linklist">
39 <ul>
40 <xsl:for-each select="$services">
41 <li>
42 <a>
43 <xsl:attribute name="href"> <gslib:service_url/> </xsl:attribute>
44 <xsl:attribute name="title"> <gslib:service_description/> </xsl:attribute>
45 <gslib:service_title/>
46 </a>
47 </li>
48 </xsl:for-each>
49
50 <li>
51 <a href="{$collection_homeUrl}">
52 Home
53 </a>
54 </li>
55 <li>
56 <a href="http://www.greenstone.org">
57 Greenstone Home
58 </a>
59 </li>
60
61 </ul>
62 </div>
63
64 </div>
65
66 <div id="content" class="noSidebar">
67 <gslib:uiItem name="collectionAbout" />
68 </div>
69
70 <div id="footer" >
71 <gslib:uiItem name="collectionFooter" />
72 </div>
73 </div>
74
75 </body>
76 </html>
77</xsl:template>
78
79
80</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.