Mercurial > genshi > genshi-test
comparison examples/bench/django/templates/base.html @ 400:8dd0d34a9fb7
Renamed `genshi.template.core` to `genshi.template.base`, mainly to avoid confusion with `genshi.core`.
author | cmlenz |
---|---|
date | Thu, 18 Jan 2007 14:58:39 +0000 |
parents | 37f128d2d7f4 |
children |
comparison
equal
deleted
inserted
replaced
399:4a7358313ee8 | 400:8dd0d34a9fb7 |
---|---|
1 <!DOCTYPE html | 1 <!DOCTYPE html |
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | 2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
4 <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | 4 <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> |
5 | 5 |
6 {% block body %} | 6 {% block content %} |
7 <div id="header"> | 7 {% block header %} |
8 <h1>{{ title|escape }}</h1> | 8 <div id="header"> |
9 </div> | 9 <h1>{{ title|escape }}</h1> |
10 {{ block.super }} | 10 </div> |
11 <div id="footer"></div> | 11 {% endblock %} |
12 | |
13 {% block footer %} | |
14 <div id="footer"></div> | |
15 {% endblock %} | |
12 {% endblock %} | 16 {% endblock %} |
13 | 17 |
14 </html> | 18 </html> |