Mercurial > genshi > mirror
view examples/bench/clearsilver/template.cs @ 62:252d2ab8af44 trunk
First (clumpsy) attempt at a logo.
author | cmlenz |
---|---|
date | Fri, 07 Jul 2006 17:55:21 +0000 |
parents | 300b6a3b0730 |
children | c40a5dcd2b55 |
line wrap: on
line source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <title><?cs var:title ?></title> </head> <body> <?cs include:"header.cs" ?> <h2>Loop</h2> <?cs if:len(items) ?> <ul> <?cs each:item = items ?> <li><?cs var:item ?></li> <?cs /each ?> </ul> <?cs /if ?> <?cs include:"footer.cs" ?> </body> </html>