<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title>Benjamin Lupton</title>
	<link href="http://balupton.com/atom.xml" rel="self"/>
	<link href="http://balupton.com"/>
	<updated><%= @site.date.toIsoDateString() %></updated>
	<id>http://balupton.com</id>
	<author>
		<name>Benjamin Lupton</name>
		<email>b@lupton.cc</email>
	</author>

	<% for document in @documents: %>
		<% if document.url.indexOf('/posts') == 0: %>
			<entry>
				<title><%= document.title %></title>
				<link href="http://balupton.com<%= document.url %>"/>
				<updated><%= document.date.toIsoDateString() %></updated>
				<id>http://balupton.com<%= document.url %></id>
				<content type="html"><%= document.contentRendered %></content>
			</entry>
		<% end %>
	<% end %>
</feed>