Mercurial > genshi > genshi-test
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 | 1 <!DOCTYPE html |
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
4 <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | |
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 | 16 {% endblock %} |
17 | |
18 </html> |