<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"
      xmlns:tal="http://xml.zope.org/namespaces/tal"
      tal:define="portal_syndication context/portal_syndication;
                  objects python:list(portal_syndication.getSyndicatableContent(context))">

 <title tal:content="context/title_or_id">Example Feed</title>
 <subtitle tal:content="context/Description">Subtitle</subtitle>
 <link tal:attributes="href context/absolute_url" rel="self" />
 <updated tal:content="python:portal_syndication.getHTML4UpdateBase(context) or default">2000-01-01T12:00+00:00</updated>
 <id tal:content="context/Identifier">Id</id>

 <entry tal:repeat="obj objects">
   <title tal:content="obj/title_or_id">Title</title>
   <link tal:attributes="href obj/Identifier" />
   <id tal:content="obj/Identifier">ID</id>
   <summary tal:content="obj/Description">Summary</summary>
   <author>
     <name tal:content="obj/Creator">Author</name>
   </author>
   <rights tal:condition="obj/Rights" tal:content="obj/Rights">Rights</rights>
   <updated tal:content="python:obj.modified().HTML4()">2000-01-01T12:00+00:00</updated>
 </entry>

</feed>
