<?xml version="1.0" encoding='utf-8'?>
<service xmlns="http://www.w3.org/2007/app"
         xmlns:py="http://purl.org/kid/ns#" 
         xmlns:atom="http://www.w3.org/2005/Atom">
  <workspace>
    <atom:title>Main Site</atom:title>
    <r py:for="c in entry" py:strip="1">
      <collection
          href="${c}/" >
           <atom:title>${c}</atom:title>
           <accept>application/atom+xml;type=entry</accept>
         <categories fixed="yes">
         </categories>
      </collection>
    </r>
    <r py:for="c in media" py:strip="1">
      <collection
          href="${c}/" >
           <atom:title>${c}</atom:title>
        <accept>*/*</accept>
         <categories fixed="yes">
         </categories>

      </collection>
    </r>
  </workspace>
</service>
