94
|
1 <?xml version="1.0" encoding="UTF-8"?>
|
|
2 <feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
|
95
|
3 <id><%= atom_id(@user.id) %></id>
|
94
|
4
|
|
5 <link rel="alternate" type="text/html" href="<%= request.protocol %><%= request.host_with_port %>" />
|
|
6 <link rel="self" type="application/atom+xml" href="<%= request.url %>" />
|
|
7
|
95
|
8 <title><%= "#{@user.name} (#{@user.screen_name})" %></title>
|
|
9 <icon><%= @user.profile_image_url_https %></icon>
|
|
10
|
94
|
11 <updated>
|
|
12 <%= @tweets.first.try(:created_at) || Time.at(0) %>
|
|
13 </updated>
|
|
14
|
95
|
15 <%= render :partial => "tweet", :collection => @tweets, :cached => ->(f) { f.id } %>
|
94
|
16 </feed>
|