Mercurial > genshi > mirror
view examples/bench/simpletal/template.html @ 1026:2e169deb0adc stable-0.7.x
Merge r1229 to r1238 and r1243 to r1251 from trunk (documentation fixes and Python 3.4 support).
author | hodgestar |
---|---|
date | Sun, 09 Mar 2014 08:41:45 +0000 |
parents | 0f246a30d3a7 |
children |
line wrap: on
line source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <title tal:content="title">Title</title> </head> <body metal:use-macro="base/macros/content"> <div metal:fill-slot="content"> <div metal:use-macro="base/macros/greeting"> <span metal:fill-slot="name" tal:content="user" tal:omit-tag=""></span> </div> <div metal:use-macro="base/macros/greeting"> <span metal:fill-slot="name" tal:omit-tag="">me</span> </div> <div metal:use-macro="base/macros/greeting"> <span metal:fill-slot="name" tal:omit-tag="">world</span> </div> <h2>Loop</h2> <ul tal:condition="items"> <li tal:repeat="item items" tal:content="item" tal:attributes="class python:repeat['item'].getEnd() and 'last' or None">Item</li> </ul> </div> </body> </html>