Edgewall Software

source: trunk/examples/basic/test.html

Last change on this file was 424, checked in by cmlenz, 17 years ago

Make Attrs instances immutable.

  • Property svn:eol-style set to native
File size: 827 bytes
Line 
1<!DOCTYPE html
2    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml"
5      xmlns:py="http://genshi.edgewall.org/"
6      xmlns:xi="http://www.w3.org/2001/XInclude"
7      lang="en">
8 <xi:include href="layout.html" />
9 <xi:include href="custom_stuff.html"><xi:fallback/></xi:include>
10 <body class="$bozz">
11  <ul py:attrs="{'id': 'second', 'class': None}" py:if="len(items) > 0">
12   <li py:for="item in items">Item $prefix${item.split()[-1]}</li>
13  </ul>
14  ${macro1()} ${macro1()} ${macro1()}
15  ${macro2('john')}
16  ${macro2('kate', classname='collapsed')}
17  <div py:content="macro2('helmut')" py:strip="">Replace me</div>
18  <greeting name="Dude" />
19  <greeting name="King" />
20  <span class="greeting">Hello Silicon</span>
21 </body>
22</html>
Note: See TracBrowser for help on using the repository browser.