Edgewall Software

source: trunk/examples/basic/layout.html

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

Fixed EOL style.

  • Property svn:eol-style set to native
File size: 533 bytes
Line 
1<div xmlns:py="http://genshi.edgewall.org/" py:strip="">
2  <head>
3    <title>Hello ${hello}</title>
4    <style type="text/css">@import(style.css)</style>
5  </head>
6  <div py:def="macro1">reference me, please</div>
7  <div py:def="macro2(name, classname='expanded')" class="${classname}">
8    Hello ${name.title()}
9  </div>
10  <span py:match="greeting" class="greeting">
11    Hello ${select('@name')}
12  </span>
13  <span py:match="span[@class='greeting']" style="text-decoration: underline" 
14        py:content="select('text()')"/>
15</div>
Note: See TracBrowser for help on using the repository browser.