Mercurial > rsstweet
view app/views/tweets/_tweet.atom.erb @ 223:ad6264cca788
Update to rails 7
author | nanaya <me@nanaya.pro> |
---|---|
date | Sat, 15 Jan 2022 02:39:53 +0900 |
parents | e07f6ea17deb |
children | 7a773720d81f |
line wrap: on
line source
<entry> <id><%= atom_id "#{tweet.user.id}/#{tweet.id}" %></id> <published><%= tweet.created_at.xmlschema %></published> <updated><%= tweet.created_at.xmlschema %></updated> <link rel="alternate" type="text/html" href="<%= status_url(tweet) %>"/> <title><%= truncate tweet.unescaped_text, :length => 30 %></title> <content type="html"> <%= render(:partial => "tweet", :formats => :html, :locals => { :tweet => tweet }).to_str %> </content> <author> <name><%= tweet.user.screen_name %></name> </author> </entry>