Mercurial > genshi > genshi-test
view examples/basic/layout.kid @ 912:46db99909472 experimental-py3k
py3k branch: add 2to3 build infrastructure to setup.py (this pulls the tests into the source distribution so that tests can be run after building with 2to3)
author | hodgestar |
---|---|
date | Sun, 24 Oct 2010 21:09:36 +0000 |
parents | 24d98edcb808 |
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>