1<html xmlns="http://www.w3.org/1999/xhtml"
2      xmlns:py="http://purl.org/kid/ns#">
3
4  <p py:def="greeting(name)">
5    Hello, ${name}!
6  </p>
7
8  <body py:match="item.tag == '{http://www.w3.org/1999/xhtml}body'" py:strip="">
9    <div id="header">
10      <h1>${title}</h1>
11    </div>
12    ${item}
13    <div id="footer" />
14  </body>
15</html>
16