view examples/basic/layout.kid @ 1023:2036193f89e7 trunk

Add support for Python 3.4 AST (support for NameConstants and changes to existing to arguments node attributes).
author hodgestar
date Sun, 16 Feb 2014 18:46:15 +0000
parents c82309603908
children
line wrap: on
line source
<div xmlns:py="http://purl.org/kid/ns#" 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="item.tag == '{http://www.w3.org/1999/xhtml}greeting'" class="greeting">
    Hello ${item.get('name')}
  </span>
  <span py:match="item.tag == '{http://www.w3.org/1999/xhtml}span' and item.get('class') == 'greeting'"
        py:content="item.text" style="text-decoration: underline" />
</div>
Copyright (C) 2012-2017 Edgewall Software