annotate examples/bench/django/templates/base.html @ 424:d698a5556a55

Set the `__version__` property in `genshi.__init__`; only works with a setuptools install, though. Addresses #103.
author cmlenz
date Tue, 20 Mar 2007 18:52:00 +0000
parents 8dd0d34a9fb7
children
rev   line source
76
37f128d2d7f4 Add Django to the benchmark.
cmlenz
parents:
diff changeset
1 <!DOCTYPE html
37f128d2d7f4 Add Django to the benchmark.
cmlenz
parents:
diff changeset
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
37f128d2d7f4 Add Django to the benchmark.
cmlenz
parents:
diff changeset
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
37f128d2d7f4 Add Django to the benchmark.
cmlenz
parents:
diff changeset
4 <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
37f128d2d7f4 Add Django to the benchmark.
cmlenz
parents:
diff changeset
5
400
8dd0d34a9fb7 Renamed `genshi.template.core` to `genshi.template.base`, mainly to avoid confusion with `genshi.core`.
cmlenz
parents: 76
diff changeset
6 {% block content %}
8dd0d34a9fb7 Renamed `genshi.template.core` to `genshi.template.base`, mainly to avoid confusion with `genshi.core`.
cmlenz
parents: 76
diff changeset
7 {% block header %}
8dd0d34a9fb7 Renamed `genshi.template.core` to `genshi.template.base`, mainly to avoid confusion with `genshi.core`.
cmlenz
parents: 76
diff changeset
8 <div id="header">
8dd0d34a9fb7 Renamed `genshi.template.core` to `genshi.template.base`, mainly to avoid confusion with `genshi.core`.
cmlenz
parents: 76
diff changeset
9 <h1>{{ title|escape }}</h1>
8dd0d34a9fb7 Renamed `genshi.template.core` to `genshi.template.base`, mainly to avoid confusion with `genshi.core`.
cmlenz
parents: 76
diff changeset
10 </div>
8dd0d34a9fb7 Renamed `genshi.template.core` to `genshi.template.base`, mainly to avoid confusion with `genshi.core`.
cmlenz
parents: 76
diff changeset
11 {% endblock %}
8dd0d34a9fb7 Renamed `genshi.template.core` to `genshi.template.base`, mainly to avoid confusion with `genshi.core`.
cmlenz
parents: 76
diff changeset
12
8dd0d34a9fb7 Renamed `genshi.template.core` to `genshi.template.base`, mainly to avoid confusion with `genshi.core`.
cmlenz
parents: 76
diff changeset
13 {% block footer %}
8dd0d34a9fb7 Renamed `genshi.template.core` to `genshi.template.base`, mainly to avoid confusion with `genshi.core`.
cmlenz
parents: 76
diff changeset
14 <div id="footer"></div>
8dd0d34a9fb7 Renamed `genshi.template.core` to `genshi.template.base`, mainly to avoid confusion with `genshi.core`.
cmlenz
parents: 76
diff changeset
15 {% endblock %}
76
37f128d2d7f4 Add Django to the benchmark.
cmlenz
parents:
diff changeset
16 {% endblock %}
37f128d2d7f4 Add Django to the benchmark.
cmlenz
parents:
diff changeset
17
37f128d2d7f4 Add Django to the benchmark.
cmlenz
parents:
diff changeset
18 </html>
Copyright (C) 2012-2017 Edgewall Software