move to 2.5.5
[anni] / lib / pleroma / web / templates / feed / feed / tag.rss.eex
1 <?xml version="1.0" encoding="UTF-8"?>
2 <rss version="2.0"
3      xmlns:webfeeds="http://webfeeds.org/rss/1.0"
4      xmlns:thr="http://purl.org/syndication/thread/1.0">
5   <channel>
6
7     <title>#<%= @tag %></title>
8     <description><%= Gettext.dpgettext("static_pages", "tag feed description", "These are public toots tagged with #%{tag}. You can interact with them if you have an account anywhere in the fediverse.", tag: @tag) %></description>
9     <link><%= '#{Routes.tag_feed_url(@conn, :feed, @tag)}.rss' %></link>
10     <webfeeds:logo><%= feed_logo() %></webfeeds:logo>
11     <webfeeds:accentColor>2b90d9</webfeeds:accentColor>
12     <%= for activity <- @activities do %>
13     <%= render Phoenix.Controller.view_module(@conn), "_tag_activity.xml", Map.merge(assigns, prepare_activity(activity)) %>
14     <% end %>
15   </channel>
16 </rss>