${opds['title']}
${opds['id']}
${opds['updated']}
Mylar Server
https://github.com/evilhero/mylar
%for link in opds['links']:
<%
linktitle = ''
if 'title' in link:
linktitle = ' title="%s"' % link['title']
%>
%endfor
%for entry in opds['entries']:
${entry['title']}
${entry['id']}
%if 'author' in entry and entry['author']:
${entry['author']}
%endif
${entry['updated']}
${entry['content']}
%if entry['rel'] == 'file':
%else:
%endif
%if 'thumbnail' in entry and entry['thumbnail']:
%endif
%if 'image' in entry and entry['image']:
%endif
%endfor