Mercurial > genshi > mirror
view examples/basic/layout.html @ 518:c1f2a859fd75 trunk
Attributes selected with an XPath are now returned as an `Attrs()` object in
all cases. Incidentally this also required adding explicit type coercion to the
parser in `genshi.path`.
author | athomas |
---|---|
date | Thu, 07 Jun 2007 13:52:13 +0000 |
parents | 84168828b074 |
children |
line wrap: on
line source
<div xmlns:py="http://genshi.edgewall.org/" 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="greeting" class="greeting"> Hello ${select('@name')} </span> <span py:match="span[@class='greeting']" style="text-decoration: underline" py:content="select('text()')"/> </div>