Mercurial > genshi > genshi-test
annotate examples/bench/simpletal/base.html @ 79:16571c57907b
Added SimpleTAL example to benchmark.
author | cmlenz |
---|---|
date | Thu, 13 Jul 2006 18:52:26 +0000 |
parents | |
children |
rev | line source |
---|---|
79 | 1 <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> |
2 | |
3 <p metal:define-macro="greeting"> | |
4 Hello, <span metal:define-slot="name">name</span> | |
5 </p> | |
6 | |
7 <body metal:define-macro="content"> | |
8 <div id="header"> | |
9 <h1 tal:content="title" /> | |
10 </div> | |
11 <div metal:define-slot="content" tal:omit-tag="" /> | |
12 <div id="footer"></div> | |
13 </body> | |
14 | |
15 </html> |