Mercurial > genshi > mirror
view examples/basic/layout.html @ 311:8de1ff534d22 trunk
* The `HTMLParser` class and the `HTML` function now accept an `encoding` parameter to properly deal with bytestring input (defaults to UTF-8).
* The `TemplateLoader` class can now also be initialized from a string for the search path, for cases where the search path contains only a single directory.
author | cmlenz |
---|---|
date | Sun, 22 Oct 2006 14:57:40 +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>