692cfbd7fa2d73f45d40c64fa9ccc26eb029b87d
[akkoma] / lib / pleroma / web / templates / feed / feed / feed.xml.eex
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
9 <id><%= feed_url(@conn, :feed, @user.nickname) <> ".atom" %></id>
10 <title><%= @user.nickname <> "'s timeline" %></title>
11 <updated><%= most_recent_update(@activities, @user) %></updated>
12 <logo><%= logo(@user) %></logo>
13 <link rel="salmon" href="<%= o_status_url(@conn, :salmon_incoming, @user.nickname) %>"/>
14 <link rel="self" href="<%= '#{feed_url(@conn, :feed, @user.nickname)}.atom' %>" type="application/atom+xml"/>
15
16 <%= render @view_module, "_author.xml", assigns %>
17
18 <%= if last_activity(@activities) do %>
19 <link rel="next" href="<%= '#{feed_url(@conn, :feed, @user.nickname)}.atom?max_id=#{last_activity(@activities).id}' %>" type="application/atom+xml"/>
20 <% end %>
21
22 <%= for activity <- @activities do %>
23 <%= render @view_module, "_activity.xml", Map.merge(assigns, %{activity: activity, data: activity_object_data(activity)}) %>
24 <% end %>
25 </feed>