source: greenstone3/trunk/web/ui/skins/mediaWikish/xsl/collecthome.xsl@ 20160

Last change on this file since 20160 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="ISO-8859-1"?>
2
3<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
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 <xsl:call-template name="metadataItem">
14 <xsl:with-param name="name">siteName</xsl:with-param>
15 </xsl:call-template>
16 /
17 <xsl:call-template name="metadataItem">
18 <xsl:with-param name="name">collectionName</xsl:with-param>
19 </xsl:call-template>
20 </title>
21
22 <xsl:call-template name="cssInclude"/>
23 </head>
24 <body>
25 <div id="mainContentArea">
26
27 <div id="header">
28 <div class="title_minor">
29
30 <a href="{$library}?a=p&amp;sa=home">
31 <xsl:call-template name="metadataItem">
32 <xsl:with-param name="name">siteName</xsl:with-param>
33 </xsl:call-template>
34 </a>
35 /
36 </div>
37 <div class="title_major">
38 <xsl:call-template name="metadataItem">
39 <xsl:with-param name="name">collectionName</xsl:with-param>
40 </xsl:call-template>
41 </div>
42
43 <div id="tablist" class="linklist">
44 <xsl:call-template name="service_list" />
45 </div>
46
47 </div>
48
49 <div id="content" class="noSidebar">
50 <xsl:call-template name="uiItem">
51 <xsl:with-param name="name">collectionAbout</xsl:with-param>
52 </xsl:call-template>
53 </div>
54
55
56 </div>
57
58 <div id="footer" >
59 <xsl:call-template name="uiItem">
60 <xsl:with-param name="name">collectionFooter</xsl:with-param>
61 </xsl:call-template>
62 </div>
63
64 </body>
65 </html>
66</xsl:template>
67
68
69</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.