Mercurial > genshi > genshi-test
view examples/basic/layout.html @ 936:47c83fbdf4d4
Merge r1144 from py3k: Add documentation on upgrading to the Genshi py3k branch.
author | hodgestar |
---|---|
date | Fri, 18 Mar 2011 09:18:59 +0000 |
parents | 24757b771651 |
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>