Mercurial > rsstweet
view app/views/tweets/show.atom.erb @ 100:c1d5d8be92c6
Add support for extended tweets
author | nanaya <me@myconan.net> |
---|---|
date | Fri, 23 Sep 2016 23:02:16 +0900 |
parents | 148d8c17cb79 |
children | 3ad8e6d20e79 |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom"> <id><%= atom_id(@user.id) %></id> <link rel="alternate" type="text/html" href="<%= request.protocol %><%= request.host_with_port %>" /> <link rel="self" type="application/atom+xml" href="<%= request.url %>" /> <title><%= "#{@user.name} (#{@user.screen_name})" %></title> <icon><%= @user.profile_image_url_https %></icon> <updated> <%= @tweets.first.try(:created_at) || Time.at(0) %> </updated> <%= render :partial => "tweet", :collection => @tweets, :cached => true %> </feed>