Mercurial > rsstweet
view app/views/tweets/_tweet.atom.erb @ 169:04ca6c4f11d0
xhtml compliance
author | nanaya <me@nanaya.pro> |
---|---|
date | Wed, 08 Aug 2018 20:19:08 +0900 |
parents | 0c60db0a3686 |
children | df4be896ab8b |
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="<%= tweet.uri %>"/> <title><%= ellipsize tweet.attrs[:full_text] %></title> <content type="xhtml"> <div xmlns="http://www.w3.org/1999/xhtml"> <%= render :partial => "tweet", :formats => :html, :locals => { :tweet => tweet } %> </div> </content> <author> <name><%= tweet.user.screen_name %></name> </author> </entry>