annotate examples/bench/simpletal/base.html @ 717:0e8b92905741
experimental-match-fastpaths
a performance breakthrough - bring this branch inline with the bigtable benchmark by lazily creating ctxt._match_set in a way that doesn't barf
author |
aflett |
date |
Tue, 08 Apr 2008 23:36:20 +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>
|