You are not logged in Log in Join
You are here: Home » Members » EIONET » RDFSummary - display RSS files » README » View Document

Log in
Name

Password

 

README

Here is some simple ZPT that works for channel="Zope.org"

<metal:block tal:condition="here/Zope.org"
tal:define="news here/Zope.org"
>
<div tal:content="python:news.channel()['title']" />
<div tal:repeat="item news/items">
<a href=""
tal:attributes="href item/link"
tal:content="item/title"
/>
</div>
<div>
<a href=""
tal:attributes="href python:news.channel()['link']">More ...</a>
</div>
</metal:block>