pleroma/lib/pleroma/web/templates/feed/feed/tag.xml.eex

16 lines
659 B
Elixir
Raw Normal View History

2019-12-06 07:32:29 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2019-12-17 20:13:45 +01:00
<rss version="2.0" xmlns:webfeeds="http://webfeeds.org/rss/1.0">
<channel>
2019-12-06 07:32:29 +01:00
2019-12-17 20:13:45 +01:00
<title>#<%= @tag %></title>
<description>These are public toots tagged with #<%= @tag %>. You can interact with them if you have an account anywhere in the fediverse.</description>
<link><%= '#{tag_feed_url(@conn, :feed, @tag)}.rss' %></link>
<webfeeds:logo><%= feed_logo() %></webfeeds:logo>
<webfeeds:accentColor>2b90d9</webfeeds:accentColor>
<%= for activity <- @activities do %>
<%= render @view_module, "_tag_activity.xml", Map.merge(assigns, prepare_activity(activity)) %>
<% end %>
</channel>
</rss>