Sha256: c7f8d64215b05c25f998fef2ad88e7de42f387ad64d52b0dcb78d6f1ae7e3617
Contents?: true
Size: 865 Bytes
Versions: 7
Compression:
Stored size: 865 Bytes
Contents
<?xml version="1.0" encoding="UTF-8"?> <feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"> <author> <name><%= page[:site_author] %></name> </author> <id><%= page[:site_URL] %>/atom.xml</id> <title><%= page[:site_name] %></title> <dc:date><%= data[0][:page][:date_rfc3339] %></dc:date> <updated><%= data[0][:page][:date_rfc3339] %></updated> <link href="<%= page[:site_URL] %>/atom.xml" rel="self" type="application/atom+xml"/> <% for @post in data %> <entry> <content type="html"><![CDATA[<%= @post[:html] %>]]></content> <id><%= @post[:uri] %></id> <link href="<%= @post[:uri] %>"/> <title><%= @post[:page][:title] %></title> <updated><%= @post[:page][:date_rfc3339] %></updated> <dc:date><%= @post[:page][:date_rfc3339] %></dc:date> </entry> <% end %> </feed>
Version data entries
7 entries across 7 versions & 1 rubygems