diff options
author | Alexander Alexeev | 2016-12-07 21:52:46 +0700 |
---|---|---|
committer | Vitaly Takmazov | 2016-12-07 22:37:17 +0300 |
commit | 7d75d9e71fc7355ed75b78791f788732cc03c6b9 (patch) | |
tree | 1f8a6172b8dbcbfd668542dc98045916f012e641 /juick-www/src/main/resources/layouts/rss.xml | |
parent | d65ceebd7b46ed9a993cb7c6ad5d01b0fffde3d4 (diff) |
template adapted for renamings
Diffstat (limited to 'juick-www/src/main/resources/layouts/rss.xml')
-rw-r--r-- | juick-www/src/main/resources/layouts/rss.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/juick-www/src/main/resources/layouts/rss.xml b/juick-www/src/main/resources/layouts/rss.xml index 61dd3be8..12f7375b 100644 --- a/juick-www/src/main/resources/layouts/rss.xml +++ b/juick-www/src/main/resources/layouts/rss.xml @@ -15,11 +15,11 @@ <item> <link>http://juick.com/{{ msg.getUser().getUName() }}/{{ msg.getMID() }}</link> <guid>http://juick.com/{{ msg.getUser().getUName() }}/{{ msg.getMID() }}</guid> - <title><![CDATA[@{{ msg.getUser().getUName() }}: {% for tag in msg.Tags %} *{{ tag }}{% endfor %}]]></title> + <title><![CDATA[@{{ msg.getUser().getUName() }}: {% for tag in msg.tags %} *{{ tag }}{% endfor %}]]></title> <description><![CDATA[{{ msg.getText() | raw }}]]></description> <pubDate>{{ sdfRSS.format(msg.getDate()) }}</pubDate> <comments>http://juick.com/{{ msg.getUser().getUName() }}/{{ msg.getMID() }}</comments> - {% for tag in msg.Tags %} + {% for tag in msg.tags %} <category>{{ tag }}</category> {% endfor %} {% if msg.AttachmentType is not empty %} |