1
0
mirror of https://github.com/edgewall/genshi.git synced 2026-02-05 15:46:37 +01:00
Files
genshi/examples/basic/layout.html
2006-09-11 15:07:07 +00:00

16 lines
533 B
HTML

<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>