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

16 lines
765 B
Elixir
Raw Normal View History

2019-12-06 00:32:29 -06:00
<?xml version="1.0" encoding="UTF-8"?>
2019-12-17 13:13:45 -06:00
<rss version="2.0" xmlns:webfeeds="http://webfeeds.org/rss/1.0">
<channel>
2019-12-06 00:32:29 -06:00
2019-12-17 13:13:45 -06:00
<title>#<%= @tag %></title>
2022-02-28 00:13:39 -06:00
<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>
<link><%= '#{Routes.tag_feed_url(@conn, :feed, @tag)}.rss' %></link>
2019-12-17 13:13:45 -06:00
<webfeeds:logo><%= feed_logo() %></webfeeds:logo>
<webfeeds:accentColor>2b90d9</webfeeds:accentColor>
<%= for activity <- @activities do %>
<%= render Phoenix.Controller.view_module(@conn), "_tag_activity.xml", Map.merge(assigns, prepare_activity(activity)) %>
2019-12-17 13:13:45 -06:00
<% end %>
</channel>
</rss>