blob: 83e48ae7e042c7da884f503a3e35bbc26f9c0ee4 [file] [log] [blame]
Armin Ronacher9d472df2008-05-04 19:56:34 +02001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2<html>
3 <head>
4 <title>Jinja2 Documentation</title>
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6 <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
7 <link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
8 {%- if builder != 'htmlhelp' %}
9 <script type="text/javascript">
10 var DOCUMENTATION_OPTIONS = {
11 URL_ROOT: '{{ pathto("", 1) }}',
12 VERSION: '{{ release }}'
13 };
14 </script>
15 <script type="text/javascript" src="{{ pathto('_static/jquery.js', 1) }}"></script>
16 <script type="text/javascript" src="{{ pathto('_static/interface.js', 1) }}"></script>
17 <script type="text/javascript" src="{{ pathto('_static/doctools.js', 1) }}"></script>
18 {%- endif %}
19 {%- if use_opensearch and builder != 'htmlhelp' %}
20 <link rel="search" type="application/opensearchdescription+xml"
21 title="Search within {{ docstitle }}"
22 href="{{ pathto('_static/opensearch.xml', 1) }}"/>
23 {%- endif %}
24 {%- if hasdoc('about') %}
25 <link rel="author" title="About these documents" href="{{ pathto('about') }}" />
26 {%- endif %}
27 <link rel="contents" title="Global table of contents" href="{{ pathto('contents') }}" />
28 <link rel="index" title="Global index" href="{{ pathto('genindex') }}" />
29 <link rel="search" title="Search" href="{{ pathto('search') }}" />
30 {%- if hasdoc('copyright') %}
31 <link rel="copyright" title="Copyright" href="{{ pathto('copyright') }}" />
32 {%- endif %}
33 <link rel="top" title="{{ docstitle }}" href="{{ pathto('index') }}" />
34 {%- if parents %}
35 <link rel="up" title="{{ parents[-1].title|striptags }}" href="{{ parents[-1].link|e }}" />
36 {%- endif %}
37 {%- if next %}
38 <link rel="next" title="{{ next.title|striptags }}" href="{{ next.link|e }}" />
39 {%- endif %}
40 {%- if prev %}
41 <link rel="prev" title="{{ prev.title|striptags }}" href="{{ prev.link|e }}" />
42 {%- endif %}
43 </head>
44 <body>
45 <div id="content">
46 <div class="header">
47 <h1 class="heading"><a href="{{ pathto('index') }}"><span>Jinja</span></a></h1>
48 </div>
49 <div class="relnav">
50 {%- if prev %}
51 <a href="{{ prev.link|e }}">&laquo; {{ prev.title }}</a> |
52 {%- endif %}
53 <a href="{{ pathto(current_page_name) if current_page_name else '#' }}">{{ title }}</a>
54 {%- if next %}
55 | <a href="{{ next.link|e }}">{{ next.title }} &raquo;</a>
56 {%- endif %}
57 </div>
58 {%- if display_toc %}
59 <div id="toc">
60 <h3>Table Of Contents</h3>
61 {{ toc }}
62 </div>
63 {%- endif %}
64 <div id="contentwrapper">
65 {% block body %}{% endblock %}
66 </div>
67 </div>
68 <div class="footer">
69 © Copyright 2008 by the <a href="http://pocoo.org/">Pocoo Team</a>.
70 </div>
71 </body>
72</html>