source: greenstone3/branches/customizingGreenstone3/web/ui/skins/oran/xsl/collectHome.xsl@ 14712

Last change on this file since 14712 was 14712, checked in by dnk2, 17 years ago

dump of existing code

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