Merge remote-tracking branch 'pleroma/develop' into instance-deletion
[akkoma] / lib / pleroma / web / templates / feed / feed / user.atom.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><%= Routes.user_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="self" href="<%= '#{Routes.user_feed_url(@conn, :feed, @user.nickname)}.atom' %>" type="application/atom+xml"/>
14
15 <%= render @view_module, "_author.atom", assigns %>
16
17 <%= if last_activity(@activities) do %>
18 <link rel="next" href="<%= '#{Routes.user_feed_url(@conn, :feed, @user.nickname)}.atom?max_id=#{last_activity(@activities).id}' %>" type="application/atom+xml"/>
19 <% end %>
20
21 <%= for activity <- @activities do %>
22 <%= render @view_module, "_activity.atom", Map.merge(assigns, prepare_activity(activity)) %>
23 <% end %>
24 </feed>