Mercurial > rsstweet
view app/views/tweets/show.atom.erb @ 168:0c60db0a3686
Less escaping, more xhtml
author | nanaya <me@nanaya.pro> |
---|---|
date | Wed, 08 Aug 2018 19:52:06 +0900 |
parents | bef9b0c1d273 |
children | 7a773720d81f |
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="https://twitter.com/<%= @user.screen_name %>" /> <link rel="self" type="application/atom+xml" href="<%= request.url %>" /> <title><%= "#{@user.name.printable} (#{@user.screen_name})" %></title> <icon><%= @user.profile_image_url_https %></icon> <logo><%= @user.profile_image_url_https %></logo> <updated><%= (@tweets.first.try(:created_at) || Time.at(0)).xmlschema %></updated> <%= render :partial => "tweet", :collection => @tweets, :cached => true %> </feed>