diff options
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/apps/room/atom.xml | 8 | ||||
-rw-r--r-- | src/templates/apps/room/rss2.xml | 3 |
2 files changed, 5 insertions, 6 deletions
diff --git a/src/templates/apps/room/atom.xml b/src/templates/apps/room/atom.xml index eab8dc7..15b329c 100644 --- a/src/templates/apps/room/atom.xml +++ b/src/templates/apps/room/atom.xml @@ -7,14 +7,14 @@ <link href="{{baseurl}}/room/+{{tags}}"/> {% if rooms %} {% for room in rooms %} - <item> + <entry> <title>{{room.name}}</title> {% if room.description %} <summary>{{room.description}}</summary> {% endif %} - <link href="{{room.go_url}}"/> - <updated>{{room.lastupdated}}</updated> - </item> + <link href="{{room.url}}"/> + <updated>{{room.updated}}</updated> + </entry> {% endfor %} {% endif %} </feed>
\ No newline at end of file diff --git a/src/templates/apps/room/rss2.xml b/src/templates/apps/room/rss2.xml index 16a420c..5a30d58 100644 --- a/src/templates/apps/room/rss2.xml +++ b/src/templates/apps/room/rss2.xml @@ -18,8 +18,7 @@ {% if room.description %} <description>{{room.description}}</description> {% endif %} - <link>{{room.go_url}}</link> - <guid isPermaLink="true">{{room.go_url_internal}}</guid> + <link>{{room.url}}</link> </item> {% endfor %} {% endif %} |