Mercurial > genshi > mirror
view examples/basic/layout.kid @ 332:97b0d21b81b7 trunk
* Fixed `basic.py` benchmark on Windows, closing #72. Thanks to John M. Camara for reporting the issue and providing the fix.
* Changed `bigtable.py` benchmark so that `cElementTree` and `ElementTree` are no longer required to run it.
author | cmlenz |
---|---|
date | Tue, 07 Nov 2006 14:28:02 +0000 |
parents | c82309603908 |
children |
line wrap: on
line source
<div xmlns:py="http://purl.org/kid/ns#" py:strip=""> <head> <title>Hello ${hello}</title> <style type="text/css">@import(style.css)</style> </head> <div py:def="macro1">reference me, please</div> <div py:def="macro2(name, classname='expanded')" class="${classname}"> Hello ${name.title()} </div> <span py:match="item.tag == '{http://www.w3.org/1999/xhtml}greeting'" class="greeting"> Hello ${item.get('name')} </span> <span py:match="item.tag == '{http://www.w3.org/1999/xhtml}span' and item.get('class') == 'greeting'" py:content="item.text" style="text-decoration: underline" /> </div>