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