summaryrefslogtreecommitdiff
path: root/template.atom.erb
blob: da52b7921bb181fcf03fbe0e02f376dfc2c71731 (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/<%= @slug %>.md"/>
	<link rel="alternate" type="text/application/atom+xml" href="/blog/<%= @slug %>.atom"/>
	<link rel="alternate" type="text/html"                 href="/blog/<%= @slug %>.html"/>
	<id>https://lukeshu.com/blog/<%= @slug %>.html</id>
	<updated><%= @gitdate.rfc3339 %></updated>
	<published><%= @date.rfc3339 %></published>
	<title><%= @title %></title>
	<content type="html"><%= html_escape(@content) %></content>
	<author><%= @author.atom %></author>
	<rights type="html"><%= html_escape(@rights) %></rights>
</entry>