move to 2.5.5
[anni] / 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   <subtitle><%= escape(@user.bio) %></subtitle>
12   <updated><%= most_recent_update(@activities, @user, :atom) %></updated>
13   <logo><%= logo(@user) %></logo>
14   <link rel="self" href="<%= '#{Routes.user_feed_url(@conn, :feed, @user.nickname)}.atom' %>" type="application/atom+xml"/>
15
16   <%= render Phoenix.Controller.view_module(@conn), "_author.atom", assigns %>
17
18   <%= if last_activity(@activities) do %>
19     <link rel="next" href="<%= '#{Routes.user_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 Phoenix.Controller.view_module(@conn), "_activity.atom", Map.merge(assigns, prepare_activity(activity)) %>
24   <% end %>
25 </feed>