Mercurial > genshi > mirror
view examples/includes/skins/default/layout.html @ 50:d3842cd76e92 trunk
Fix the way multiple directives are applied to a single `SUB` in many cases by making the directives themselves responsible for applying any remaining directives.
author | cmlenz |
---|---|
date | Tue, 04 Jul 2006 08:37:25 +0000 |
parents | ee669cb9cccc |
children | 448792ab1303 |
line wrap: on
line source
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#" xmlns:xi="http://www.w3.org/2001/XInclude" py:strip=""> <xi:include href="../macros.html" /> <head> <title>Hello ${hello}</title> <style type="text/css">@import(style.css)</style> </head> <body py:match="body"> <xi:include href="header.html" /> <div id="content"> ${select('*')} </div> <xi:include href="footer.html" /> </body> </html>