source: greenstone3/branches/customizingGreenstone3/web/ui/skins/oran/xsl/siteHome.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.1 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<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" />
12 /
13 <gslib:metadataItem name="collectionName" />
14 </title>
15
16 <gslib:css/>
17 <gslib:js/>
18 </head>
19 <body>
20 <div id="container">
21
22 <div id="header">
23 <div class="title">
24 <gslib:uiItem name="siteHeader" />
25 </div>
26 </div>
27
28 <div id="sidebar" class="index">
29 <xsl:for-each select="$collections">
30 <div class="itemName">
31 <a>
32 <xsl:attribute name="href"><gslib:collection_url/></xsl:attribute>
33 <gslib:collection_title/>
34 </a>
35 </div>
36
37 </xsl:for-each>
38 </div>
39
40 <div id="content" class="withSidebar">
41 <gslib:uiItem name="siteAbout" />
42 </div>
43
44 <div class="centering" id="footer">
45 <gslib:uiItem name="siteFooter" />
46 </div>
47 </div>
48 </body>
49 </html>
50</xsl:template>
51
52</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.