source: documentation/trunk/tutorial_sample_files/interfaces/aybara/main.xsl@ 28516

Last change on this file since 28516 was 28516, checked in by jlwhisler, 11 years ago

Files for the new tutorials on designing a new interface, including images and CSS, as well as start main.xsl, header.xsl, and home.xsl files. The pages and layouts folders in transform are empty on purpose, so the users can put each XSL file in the right place themselves as they go through the tutorials. index-GS3.html gives a preview of what the new interface will look like. During the tutorial, users are also instructed to visit http://www.os-templates.com/free-website-templates/news-magazine to get the remainder of the CSS and image files required. (Necessary because the license prohibits distribution.)

File size: 1.0 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<xsl:stylesheet version="1.0"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4
5 xmlns:java="http://xml.apache.org/xslt/java"
6 xmlns:util="xalan://org.greenstone.gsdl3.util.XSLTUtil"
7 xmlns:gslib="http://www.greenstone.org/skinning"
8 xmlns:gsf="http://www.greenstone.org/greenstone3/schema/ConfigFormat"
9
10 xmlns:lxslt="http://xml.apache.org/xslt"
11 xmlns:result="http://www.example.com/results"
12 xmlns:exsl="http://exslt.org/common"
13
14 extension-element-prefixes="java util result exsl"
15 exclude-result-prefixes="util java util">
16
17
18<!-- The main layout is defined here -->
19<xsl:template name="mainTemplate">
20<html>
21 <head>
22 <!-- ***** in header.xsl ***** -->
23 <xsl:call-template name="create-html-header"/>
24 </head>
25 <body>
26 <xsl:apply-templates select="/page"/>
27 <xsl:call-template name="gs_footer"/>
28 </body>
29</html>
30</xsl:template>
31
32
33<!-- Template controlling the footer. -->
34<xsl:template name="gs_footer">
35<!-- Put footer in here. -->
36</xsl:template>
37
38</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.