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