Mercurial > rsstweet
view app/views/tweets/_tweet.atom.erb @ 236:498043313523 legit-client
Support multiple headers
author | nanaya <me@nanaya.net> |
---|---|
date | Sat, 15 Jul 2023 01:40:31 +0900 |
parents | 7a773720d81f |
children |
line wrap: on
line source
<entry> <% created_at = tweet[:created_at].xmlschema %> <id><%= atom_id "#{tweet[:user][:id]}/#{tweet[:id]}" %></id> <published><%= created_at %></published> <updated><%= created_at %></updated> <link rel="alternate" type="text/html" href="<%= status_url(tweet) %>"/> <title><%= truncate tweet[:message], :length => 30 %></title> <content type="html"> <%= render(:partial => "tweet", :formats => :html, :locals => { :tweet => tweet }).to_str %> </content> <author> <name><%= tweet[:user][:username] %></name> </author> </entry>