
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@2929 fd906abe-77d9-0310-91a1-e0d9ade77398
16 lines
540 B
XML
16 lines
540 B
XML
<!-- ZPT macros for demo view -->
|
|
|
|
<metal:block define-macro="asset">
|
|
<h1 tal:content="item/adapted/title">Title</h1>
|
|
<div tal:define="descr item/adapted/description" tal:condition="descr">
|
|
<h2>Description</h2>
|
|
<p tal:content="item/adapted/description">Description</p>
|
|
</div>
|
|
|
|
<p tal:define="url python: view.getUrlForTarget(item)">
|
|
<a href="#"
|
|
tal:attributes="href string:${url}/view"><img
|
|
tal:attributes="src string:${url}/@@mediaasset.html?v=medium" /></a>
|
|
</p>
|
|
</metal:block>
|
|
|