comparison examples/bench/cheetah/template.tmpl @ 57:300b6a3b0730 trunk

Add some simple benchmarks to compare performance against Clearsilver, Kid, Cheetah, and more soon.
author cmlenz
date Tue, 04 Jul 2006 18:19:22 +0000
parents
children bab19496d4fa
comparison
equal deleted inserted replaced
56:6474226bb8b6 57:300b6a3b0730
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 <head>
6 <title>${title}</title>
7 </head>
8 <body>
9 #include "header.tmpl"
10
11 <h2>Loop</h2>
12 #if $items
13 <ul>
14 #for $item in $items
15 <li>$item</li>
16 #end for
17 </ul>
18 #end if
19
20 #include "footer.tmpl"
21 </body>
22 </html>
Copyright (C) 2012-2017 Edgewall Software