Blame examples/bench/cheetah/template.tmpl

rpm-build dcf1ae
rpm-build dcf1ae
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
rpm-build dcf1ae
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
rpm-build dcf1ae
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
rpm-build dcf1ae
  <head>
rpm-build dcf1ae
    <title>${title}</title>
rpm-build dcf1ae
  </head>
rpm-build dcf1ae
  <body>
rpm-build dcf1ae
rpm-build dcf1ae
      #def greeting(name)
rpm-build dcf1ae
      

hello ${name}!

rpm-build dcf1ae
      #end def
rpm-build dcf1ae
 
rpm-build dcf1ae
    #include "cheetah/header.tmpl"
rpm-build dcf1ae
rpm-build dcf1ae
    $greeting($user)
rpm-build dcf1ae
    $greeting('me')
rpm-build dcf1ae
    $greeting('world')
rpm-build dcf1ae
 
rpm-build dcf1ae
    

Loop

rpm-build dcf1ae
    #if $list_items
rpm-build dcf1ae
      
    rpm-build dcf1ae
            #for $list_item in $list_items
    rpm-build dcf1ae
              
  • $list_item
  • rpm-build dcf1ae
            #end for
    rpm-build dcf1ae
          
    rpm-build dcf1ae
        #end if
    rpm-build dcf1ae
    rpm-build dcf1ae
        #include "cheetah/footer.tmpl"
    rpm-build dcf1ae
      </body>
    rpm-build dcf1ae
    </html>