annotate examples/webpy/hello.html @ 609:237050080827
Add support for Python code blocks in text templates using the new syntax.
author |
cmlenz |
date |
Mon, 27 Aug 2007 22:39:01 +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>
|