1 <?xml version=
"1.0" encoding=
"utf-8"?>
2 <rss version=
"2.0" xmlns:
content=
"http://purl.org/rss/1.0/modules/content/" xmlns:
dc=
"http://purl.org/dc/elements/1.1/" xmlns:
media=
"http://search.yahoo.com/mrss/">
4 <title>wallabag — {{type}} feed
</title>
5 <link>{{ url('unread') }}
</link>
6 <pubDate>{{ "now"|date('D, d M Y H:i:s') }}
</pubDate>
7 <generator>wallabag
</generator>
8 <description>wallabag {{type}} elements
</description>
10 {% for entry in entries %}
13 <title><![CDATA[{{ entry.title }}]]
></title>
14 <source url=
"{{ url('view', { 'id': entry.id }) }}">wallabag
</source>
15 <link>{{ url('view', { 'id': entry.id }) }}
</link>
16 <guid>{{ url('view', { 'id': entry.id }) }}
</guid>
17 <pubDate>{{ entry.createdAt|date('D, d M Y H:i:s') }}
</pubDate>
20 {%- if entry.readingTime
> 0 -%}
21 {% trans %}estimated reading time :{% endtrans %} {{ entry.readingTime }} min
23 {% trans %}estimated reading time :{% endtrans %}
< 1 min
26 {{ entry.content|raw -}}