summaryrefslogtreecommitdiff
path: root/doc/build/templates/base.mako
blob: b07502340dd5f79c628ab2f726d242d03e2dc251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<head>
<title><%block name="head_title">Mako Templates for Python</%block></title>

<!-- begin iterate through sphinx environment css_files -->
% for cssfile in self.attr.default_css_files + css_files:
    <link rel="stylesheet" href="${pathto(cssfile, 1)}" type="text/css" />
% endfor
<!-- end iterate through sphinx environment css_files -->

<%block name="headers">
</%block>


</head>
<body>
    <div id="wrap">
    <div class="rightbar">

    % if toolbar:
    <div id="gittip_nav">
    <iframe style="border: 0; margin: 0; padding: 0;"
    src="https://www.gittip.com/zzzeek/widget.html"
    width="48pt" height="20pt"></iframe>
    </div>
    % endif

    <div class="slogan">
    Hyperfast and lightweight templating for the Python platform.
    </div>

    % if toolbar:
    <div class="toolbar">
    <a href="${site_base}/">Home</a>
    &nbsp; | &nbsp;
    <a href="${site_base}/trac">Trac</a>
    &nbsp; | &nbsp;
    <a href="${site_base}/community.html">Community</a>
    &nbsp; | &nbsp;
    <a href="${pathto('index')}">Documentation</a>
    &nbsp; | &nbsp;
    <a href="${site_base}/download.html">Download</a>
    </div>
    % endif

    </div>

    <a href="${site_base}/"><img src="${pathto('_static/makoLogo.png', 1)}" /></a>

    <hr/>

    ${next.body()}
<div class="clearfix">
<%block name="footer">
<hr/>

<div class="copyright">Website content copyright &copy; by Michael Bayer.
    All rights reserved.  Mako and its documentation are licensed
    under the MIT license.  mike(&)zzzcomputing.com</div>
</%block>
</div>
</div>
</body>
</html>