blob: 7d1a4d5a65b53e965efcc3f35d8e97d287886d40 [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">
Armin Ronachera5204a42008-05-06 12:14:23 +02006 <link rel="stylesheet" href="{{ pathto('_static/style.css', 1) }}" type="text/css">
7 <link rel="stylesheet" href="{{ pathto('_static/print.css', 1) }}" type="text/css" media="print">
Armin Ronacher6b449522008-05-04 20:48:03 +02008 <link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css">
Armin Ronacher9d472df2008-05-04 19:56:34 +02009 {%- if builder != 'htmlhelp' %}
10 <script type="text/javascript">
11 var DOCUMENTATION_OPTIONS = {
12 URL_ROOT: '{{ pathto("", 1) }}',
13 VERSION: '{{ release }}'
14 };
15 </script>
16 <script type="text/javascript" src="{{ pathto('_static/jquery.js', 1) }}"></script>
17 <script type="text/javascript" src="{{ pathto('_static/interface.js', 1) }}"></script>
18 <script type="text/javascript" src="{{ pathto('_static/doctools.js', 1) }}"></script>
Armin Ronacher3ef20432008-06-09 18:27:19 +020019 <script type="text/javascript" src="{{ pathto('_static/jinja.js', 1) }}"></script>
Armin Ronacher9d472df2008-05-04 19:56:34 +020020 {%- endif %}
21 {%- if use_opensearch and builder != 'htmlhelp' %}
22 <link rel="search" type="application/opensearchdescription+xml"
23 title="Search within {{ docstitle }}"
Armin Ronacher6b449522008-05-04 20:48:03 +020024 href="{{ pathto('_static/opensearch.xml', 1) }}">
Armin Ronacher9d472df2008-05-04 19:56:34 +020025 {%- endif %}
26 {%- if hasdoc('about') %}
Armin Ronacher6b449522008-05-04 20:48:03 +020027 <link rel="author" title="About these documents" href="{{ pathto('about') }}">
Armin Ronacher9d472df2008-05-04 19:56:34 +020028 {%- endif %}
Armin Ronacher6b449522008-05-04 20:48:03 +020029 <link rel="contents" title="Global table of contents" href="{{ pathto('contents') }}">
30 <link rel="index" title="Global index" href="{{ pathto('genindex') }}">
31 <link rel="search" title="Search" href="{{ pathto('search') }}">
Armin Ronacher9d472df2008-05-04 19:56:34 +020032 {%- if hasdoc('copyright') %}
Armin Ronacher6b449522008-05-04 20:48:03 +020033 <link rel="copyright" title="Copyright" href="{{ pathto('copyright') }}">
Armin Ronacher9d472df2008-05-04 19:56:34 +020034 {%- endif %}
Armin Ronacher6b449522008-05-04 20:48:03 +020035 <link rel="top" title="{{ docstitle }}" href="{{ pathto('index') }}">
Armin Ronacher9d472df2008-05-04 19:56:34 +020036 {%- if parents %}
Armin Ronacher6b449522008-05-04 20:48:03 +020037 <link rel="up" title="{{ parents[-1].title|striptags }}" href="{{ parents[-1].link|e }}">
Armin Ronacher9d472df2008-05-04 19:56:34 +020038 {%- endif %}
39 {%- if next %}
Armin Ronacher6b449522008-05-04 20:48:03 +020040 <link rel="next" title="{{ next.title|striptags }}" href="{{ next.link|e }}">
Armin Ronacher9d472df2008-05-04 19:56:34 +020041 {%- endif %}
42 {%- if prev %}
Armin Ronacher6b449522008-05-04 20:48:03 +020043 <link rel="prev" title="{{ prev.title|striptags }}" href="{{ prev.link|e }}">
Armin Ronacher9d472df2008-05-04 19:56:34 +020044 {%- endif %}
Armin Ronachered98cac2008-05-07 08:42:11 +020045 {% block extrahead %}{% endblock %}
Armin Ronacher9d472df2008-05-04 19:56:34 +020046 </head>
47 <body>
48 <div id="content">
49 <div class="header">
Armin Ronacherf35e2812008-05-06 16:04:10 +020050 <h1 class="heading"><a href="{{ pathto('index') }}"
51 title="back to the documentation overview"><span>Jinja</span></a></h1>
Armin Ronacher9d472df2008-05-04 19:56:34 +020052 </div>
53 <div class="relnav">
54 {%- if prev %}
55 <a href="{{ prev.link|e }}">&laquo; {{ prev.title }}</a> |
56 {%- endif %}
57 <a href="{{ pathto(current_page_name) if current_page_name else '#' }}">{{ title }}</a>
58 {%- if next %}
59 | <a href="{{ next.link|e }}">{{ next.title }} &raquo;</a>
60 {%- endif %}
61 </div>
Armin Ronacher9d472df2008-05-04 19:56:34 +020062 <div id="contentwrapper">
Armin Ronacher3ef20432008-06-09 18:27:19 +020063 {%- if display_toc %}
64 <div id="toc">
65 <h3>Table Of Contents</h3>
66 {{ toc }}
67 </div>
68 {%- endif %}
Armin Ronacher9d472df2008-05-04 19:56:34 +020069 {% block body %}{% endblock %}
70 </div>
71 </div>
72 <div class="footer">
Armin Ronacher6b449522008-05-04 20:48:03 +020073 © Copyright 2008 by the <a href="http://pocoo.org/">Pocoo Team</a>,
74 documentation generated by <a href="http://sphinx.pocoo.org/">Sphinx</a>
Armin Ronacher9d472df2008-05-04 19:56:34 +020075 </div>
76 </body>
77</html>