summaryrefslogtreecommitdiff
path: root/tmpl/page.atom.erb
blob: ea37ea57ca32e4c624263cc467223d366473be91 (plain)
1
2
3
4
5
6
7
8
9
10
<entry xmlns="http://www.w3.org/2005/Atom">
	<link rel="alternate" type="text/html" href="<%= page.url %>"/>
	<id><%= page.url %></id>
	<updated><%= page.updated.rfc3339 %></updated>
	<published><%= page.published.rfc3339 %></published>
	<title><%= page.title %></title>
	<author><%= page.author.atom %></author>
	<% if page.content %><content type="html"><%= html_escape(page.content) %></content><% end %>
	<% if page.rights %><rights type="html"><%= html_escape(page.rights) %></rights><% end %>
</entry>