logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

tag.rss.eex (825B)


  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. <title>#<%= @tag %></title>
  7. <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>
  8. <link><%= '#{Routes.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 Phoenix.Controller.view_module(@conn), "_tag_activity.xml", Map.merge(assigns, prepare_activity(activity)) %>
  13. <% end %>
  14. </channel>
  15. </rss>