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 10 #def greeting(name) 11 <p>hello ${name}!</p> 12 #end def 13 14 #include "cheetah/header.tmpl" 15 16 $greeting($user) 17 $greeting('me') 18 $greeting('world') 19 20 <h2>Loop</h2> 21 #if $list_items 22 <ul> 23 #for $list_item in $list_items 24 <li #if $list_item is $list_items[-1] then "class='last'" else ""#>$list_item</li> 25 #end for 26 </ul> 27 #end if 28 29 #include "cheetah/footer.tmpl" 30 </body> 31</html> 32