summaryrefslogtreecommitdiff
path: root/doc/build/templates/static_base.mako
blob: b3f7a52999080275456f99d7022c2fd48d72292d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        ${metatags and metatags or ''}
        <title>${self.show_title()} &mdash; ${docstitle|h}</title>
        <%block name="headers"/>
    </head>
    <body>
        ${next.body()}
    </body>
</html>


<%!
    local_script_files = []
%>