Dont show navig titles for TKL
[yaz-moved-to-github.git] / doc / tkl.xsl.in
1 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2                 version="1.0">
3
4   <xsl:include href="/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/xhtml/chunk.xsl"/>
5
6   <xsl:variable name="use.id.as.filename">1</xsl:variable>
7   <xsl:variable name="html.ext">.tkl</xsl:variable>
8   <xsl:variable name="navig.showtitles">0</xsl:variable>
9   <xsl:param name="chunker.output.omit-xml-declaration" select="'yes'"/> 
10
11 <xsl:template name="chunk-element-content">
12   <xsl:param name="prev"/>
13   <xsl:param name="next"/>
14
15   <document>
16
17     <nonews>1</nonews>
18   
19     <title>
20        <xsl:apply-templates select="." mode="object.title.markup"/>
21     </title>
22
23     <body>
24       <xsl:call-template name="body.attributes"/>
25       <xsl:call-template name="user.header.navigation"/>
26
27       <xsl:call-template name="header.navigation">
28         <xsl:with-param name="prev" select="$prev"/>
29         <xsl:with-param name="next" select="$next"/>
30       </xsl:call-template>
31
32       <xsl:call-template name="user.header.content"/>
33
34       <xsl:apply-imports/>
35
36       <xsl:call-template name="user.footer.content"/>
37
38       <xsl:call-template name="footer.navigation">
39         <xsl:with-param name="prev" select="$prev"/>
40         <xsl:with-param name="next" select="$next"/>
41       </xsl:call-template>
42
43       <xsl:call-template name="user.footer.navigation"/>
44     </body>
45   </document>
46 </xsl:template>
47
48 </xsl:stylesheet>
49
50