summaryrefslogtreecommitdiff
path: root/page.atom.erb
blob: bc81380bf3618aa4b31a09b5f4339d2a3308ec90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://www.w3.org/2005/Atom">
	<link rel="alternate" type="text/markdown"             href="/blog/<%= @page.slug %>.md"/>
	<link rel="alternate" type="text/application/atom+xml" href="/blog/<%= @page.slug %>.atom"/>
	<link rel="alternate" type="text/html"                 href="/blog/<%= @page.slug %>.html"/>
	<id>https://lukeshu.com/blog/<%= @page.slug %>.html</id>
	<updated><%= @page.gitdate.rfc3339 %></updated>
	<published><%= @page.date.rfc3339 %></published>
	<title><%= @page.title %></title>
	<content type="html"><%= html_escape(@page.content) %></content>
	<author><%= @page.author.atom %></author>
	<rights type="html"><%= html_escape(@page.rights) %></rights>
</entry>