Don't fix the header. Just fix the navigation
[exim-website.git] / templates / wrapper.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5    <!-- Define display/content information -->
6       <xsl:output indent="yes"/>
7       <xsl:output encoding="UTF-8"/>
8       <xsl:output media-type="text/html"/>
9       <xsl:output omit-xml-declaration="yes"/>
10       <xsl:output doctype-public="XSLT-compat"/>
11
12    <!-- Define some variables -->
13       <xsl:variable name="docroot"/>
14       <xsl:variable name="html.head.title"/>
15       <xsl:variable name="html.head.description" select="'Exim is a message transfer agent (MTA) developed at the University of Cambridge for use on Unix systems connected to the Internet.'"/>
16       <xsl:variable name="html.head.keywords" select="'exim,smtp,mta,email'"/>
17       <xsl:variable name="html.head.robots" select="'noodp,noydir,index,follow'"/>
18       <xsl:variable name="html.head.append"/>
19       <xsl:variable name="html.body.append"/>
20       <xsl:variable name="html.body.outer.append"/>
21
22    <!-- The main template code -->
23       <xsl:template match="/">
24          <html lang="en-GB">
25             <head>
26                <link rel="stylesheet" type="text/css" href="{$docroot}/common.css"/>
27
28                <meta name="author"      content="The Exim Project. &lt;http://www.exim.org/&gt;"/>
29                <meta name="copyright"   content="Copyright ©2010The Exim Project. All rights reserved"/>
30                <meta name="description" content="{$html.head.description}"/>
31                <meta name="keywords"    content="{$html.head.keywords}"/>
32                <meta name="robots"      content="{$html.head.robots}"/>
33
34                <!-- Mobile Safari (iPhone) - Reduce viewport to physical size of device -->
35                   <meta name="viewport" content="width=device-width"/>
36
37                <title>
38                   <xsl:value-of select="$html.head.title"/>
39                </title>
40             
41                <xsl:copy-of select="$html.head.append"/>
42             </head>
43             <body>
44
45                 <!-- Header -->
46
47                    <h1 id="header">
48                       <a href="{$docroot}">Exim Internet Mailer</a>
49                    </h1>
50
51                 <!-- Outer Container -->
52
53                    <div id="outer">
54
55                       <!-- Navigation -->
56
57                          <ul id="nav_flow" class="nav">
58                             <li> <a href="{$docroot}/mirrors.html">Download</a> </li>
59                             <li> <a href="{$docroot}/docs.html">Documentation</a> </li>
60                             <li> <a href="{$docroot}/maillist.html">Mailing Lists</a> </li>
61                             <li> <a href="http://wiki.exim.org/">Wiki</a> </li>
62                             <li> <a href="http://www.exim.org/bugzilla/">Bugs</a> </li>
63                             <li> <a href="{$docroot}/credits.html">Credits</a> </li>
64
65                             <!-- Search Field -->
66
67                                <li class="search">
68                                   <form action="http://www.google.com/search" method="get">
69                                      <span class="search_field_container">
70                                         <input type="search" name="q" placeholder="Search Docs" class="search_field"/>
71                                      </span>
72                                      <input type="hidden" name="hl" value="en"/>
73                                      <input type="hidden" name="ie" value="UTF-8"/>
74                                      <input type="hidden" name="as_qdr" value="all"/>
75                                      <input type="hidden" name="q" value="site:www.exim.org"/>
76                                      <input type="hidden" name="q" value="inurl:exim-html-current"/>
77                                   </form>
78                                </li>
79                          </ul>
80
81                       <!-- MAIN CONTENT. This is the div that wraps around the other stylesheets -->
82                          <div id="inner">
83                             <div id="content">
84                               <xsl:call-template name="content"/>
85                            </div>
86                          </div>
87
88                       <!-- Branding -->
89                          <iframe id="branding" name="branding" src="{$docroot}/branding/branding.html" height="0" frameborder="no" scrolling="no"/>
90
91                       <!-- Footer -->
92
93                          <div id="footer">
94                             <xsl:text>Website design by </xsl:text>
95                             <a href="https://secure.grepular.com/">Mike Cardwell</a>
96                             <xsl:text>, of </xsl:text>
97                             <a href="http://cardwellit.com/">Cardwell IT Ltd.</a>
98                          </div>
99
100                       <!-- Side Bars -->
101                          <div class="left_bar"/>
102                          <div class="right_bar"/>
103
104                       <!-- Append anything to the outer container? -->
105                          <xsl:copy-of select="$html.body.outer.append"/>
106                    </div>
107
108                 <!-- Load latest version of jQuery 1.4 from the Google CDN -->
109                    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
110
111                 <!-- Local JavaScript -->
112                    <script type="text/javascript" src="{$docroot}/common.js"></script>
113                    
114                    <xsl:copy-of select="$html.body.append"/>
115
116              </body>
117
118          </html>
119       </xsl:template>
120
121    <!-- Quote Element -->
122       <xsl:template match="quote">
123          <xsl:text>&#8220;</xsl:text><xsl:apply-templates match="*"/><xsl:text>&#8221;</xsl:text>
124       </xsl:template>
125
126    <!-- Random Docbook Elements -->
127       <xsl:template match="filename | emphasis | option | command | function">
128          <span class="docbook_{name()}"> <xsl:apply-templates/> </span>
129       </xsl:template>
130
131    <!-- Literal Element -->
132       <xsl:template match="literal">
133          <code class="docbook_literal"> <xsl:apply-templates/> </code>
134       </xsl:template>
135       <xsl:template match="literallayout">
136          <div class="docbook_literallayout"> <pre> <xsl:apply-templates/> </pre> </div>
137       </xsl:template>
138
139    <!-- ULink Element -->
140       <xsl:template match="ulink">
141          <a href="{text()}"> <xsl:value-of select="text()"/> </a>
142       </xsl:template>
143
144    <!-- XREF (Fixed up in the Perl) -->
145       <xsl:template match="xref">
146          <a href="{@url}" title="{@chapter_id}. {@chapter_title}">
147             <xsl:choose>
148                <xsl:when test="@section_id">
149                   <xsl:choose>
150                      <xsl:when test="@longref">
151                         <xsl:value-of select="@chapter_title"/>
152                         <small>
153                            <xsl:value-of select="concat(' [',@section_title,']')"/>
154                         </small>
155                      </xsl:when>
156                      <xsl:otherwise>
157                         <xsl:value-of select="concat(@chapter_id,'.',@section_id)"/>
158                      </xsl:otherwise>
159                   </xsl:choose>
160                </xsl:when>
161                <xsl:otherwise>
162                   <xsl:choose>
163                      <xsl:when test="@longref">
164                         <xsl:value-of select="@chapter_title"/>
165                      </xsl:when>
166                      <xsl:otherwise>
167                         <xsl:value-of select="@chapter_id"/>
168                      </xsl:otherwise>
169                   </xsl:choose>
170                </xsl:otherwise>
171             </xsl:choose>
172          </a>
173       </xsl:template>
174
175    <!-- Para -->
176       <xsl:template match="para"> <p> <xsl:apply-templates/> </p> </xsl:template>
177
178    <!-- Lists -->
179       <xsl:template match="itemizedlist">                        <ul> <xsl:apply-templates/> </ul> </xsl:template>
180       <xsl:template match="itemizedlist/listitem">               <li> <xsl:apply-templates/> </li> </xsl:template>
181       <xsl:template match="orderedlist">                         <ol> <xsl:apply-templates/> </ol> </xsl:template>
182       <xsl:template match="orderedlist/listitem">                <li> <xsl:apply-templates/> </li> </xsl:template>
183       <xsl:template match="variablelist">                        <dl> <xsl:apply-templates/> </dl> </xsl:template>
184       <xsl:template match="variablelist/varlistentry/term">      <dt> <xsl:apply-templates/> </dt> </xsl:template>
185       <xsl:template match="variablelist/varlistentry/listitem">  <dd> <xsl:apply-templates/> </dd> </xsl:template>
186
187    <!-- Table -->
188       <xsl:template match="informaltable"> <table> <xsl:apply-templates/> </table> </xsl:template>
189       <xsl:template match="tbody/row">     <tr>    <xsl:apply-templates/> </tr>    </xsl:template>
190       <xsl:template match="row/entry">     <td>    <xsl:apply-templates/> </td>    </xsl:template>
191       <xsl:template match="tgroup|tbody"> <xsl:apply-templates/> </xsl:template>
192
193    <!-- Ignore -->
194       <xsl:template match="indexterm|title|titleabbrev|current_version"/>
195
196 </xsl:stylesheet>