annotate examples/webpy/hello.html @ 804:cce33406c1cf
stable-0.5.x
Ported [1005] to 0.5.x branch.
author |
cmlenz |
date |
Thu, 05 Mar 2009 10:06:45 +0000 |
parents |
bb6818970092 |
children |
|
rev |
line source |
267
|
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 xmlns:py="http://genshi.edgewall.org/">
|
|
6 <body>
|
|
7 <h1>web.py with Genshi</h1>
|
|
8 <hr />
|
|
9 <ul py:if="times">
|
|
10 <li py:for="i in range(times)">Hello, $name!</li>
|
|
11 </ul>
|
|
12 </body>
|
|
13 </html>
|