annotate examples/bench/simpletal/base.html @ 821:f807fb8900ca
experimental-inline
inline-branch: Fix for `for` directive.
author |
cmlenz |
date |
Wed, 11 Mar 2009 18:13:12 +0000 |
parents |
8d6bee631a58 |
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>
|