mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-10 17:05:26 +00:00
Fix tests
This commit is contained in:
parent
1137fae94d
commit
71e51207ce
2 changed files with 40 additions and 0 deletions
|
@ -0,0 +1,34 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<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/">
|
||||||
|
<channel>
|
||||||
|
<title>wallabag — {{type}} feed</title>
|
||||||
|
<link>{{ url('unread') }}</link>
|
||||||
|
<pubDate>{{ "now"|date('D, d M Y H:i:s') }}</pubDate>
|
||||||
|
<generator>wallabag</generator>
|
||||||
|
<description>wallabag {{type}} elements</description>
|
||||||
|
|
||||||
|
{% for entry in entries %}
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title><![CDATA[{{ entry.title }}]]></title>
|
||||||
|
<source url="{{ url('view', { 'id': entry.id }) }}">wallabag</source>
|
||||||
|
<link>{{ url('view', { 'id': entry.id }) }}</link>
|
||||||
|
<guid>{{ url('view', { 'id': entry.id }) }}</guid>
|
||||||
|
<pubDate>{{ entry.createdAt|date('D, d M Y H:i:s') }}</pubDate>
|
||||||
|
<description>
|
||||||
|
<![CDATA[
|
||||||
|
{%- if entry.readingTime > 0 -%}
|
||||||
|
{% trans %}estimated reading time :{% endtrans %} {{ entry.readingTime }} min
|
||||||
|
{%- else -%}
|
||||||
|
{% trans %}estimated reading time :{% endtrans %} < 1 min
|
||||||
|
{%- endif %}
|
||||||
|
|
||||||
|
{{ entry.content|raw -}}
|
||||||
|
]]>
|
||||||
|
</description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
|
@ -0,0 +1,6 @@
|
||||||
|
Hello {{username}}!
|
||||||
|
|
||||||
|
To reset your password - please visit {{confirmationUrl}}
|
||||||
|
|
||||||
|
Regards,
|
||||||
|
Wallabag bot
|
Loading…
Reference in a new issue