source: greenstone3/trunk/web/ui/skins/oran/xsl/siteHome.xsl@ 16409

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

In fixing case sensitivity on filename fixed, got filename extension wrong! Now fixed

File size: 1.2 KB
RevLine 
[16315]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<xsl:import href="./util.xsl"/>
5<xsl:output method="html"/>
6
7<xsl:template match="/">
8 <html>
9 <head>
10 <title>
11 <gslib:metadataItem name="siteName" /> / <gslib:metadataItem name="collectionName" />
12 </title>
13
14 <gslib:css/>
15 <gslib:js/>
16 </head>
17 <body>
18 <div id="container">
19
20 <div id="header">
21 <div class="title">
22 <gslib:uiItem name="siteHeader" />
23 </div>
24 </div>
25
26 <div id="sidebar" class="index">
27 <xsl:for-each select="$collections">
28 <div class="itemName">
29 <a>
30 <xsl:attribute name="href"><gslib:collection_url/></xsl:attribute>
31 <gslib:collection_title/>
32 </a>
33 </div>
34
35 </xsl:for-each>
36 </div>
37
38 <div id="content" class="withSidebar">
39 <gslib:uiItem name="siteAbout" />
40 </div>
41
42 <div class="centering" id="footer">
43 <gslib:uiItem name="siteFooter" />
44 </div>
45 </div>
46 </body>
47 </html>
48</xsl:template>
49
50</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.