logo

pleroma

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

tag.atom.eex (1071B)


  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <feed
  3. xmlns="http://www.w3.org/2005/Atom"
  4. xmlns:thr="http://purl.org/syndication/thread/1.0"
  5. xmlns:activity="http://activitystrea.ms/spec/1.0/"
  6. xmlns:poco="http://portablecontacts.net/spec/1.0"
  7. xmlns:ostatus="http://ostatus.org/schema/1.0"
  8. xmlns:statusnet="http://status.net/schema/api/1/">
  9. <id><%= Routes.tag_feed_url(@conn, :feed, @tag) <> ".atom" %></id>
  10. <title>#<%= @tag %></title>
  11. <subtitle><%= 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) %></subtitle>
  12. <logo><%= feed_logo() %></logo>
  13. <updated><%= most_recent_update(@activities) %></updated>
  14. <link rel="self" href="<%= '#{Routes.tag_feed_url(@conn, :feed, @tag)}.atom' %>" type="application/atom+xml"/>
  15. <%= for activity <- @activities do %>
  16. <%= render Phoenix.Controller.view_module(@conn), "_tag_activity.atom", Map.merge(assigns, prepare_activity(activity, actor: true)) %>
  17. <% end %>
  18. </feed>