-
Notifications
You must be signed in to change notification settings - Fork 0
/
rss.xml.ejs
26 lines (23 loc) · 927 Bytes
/
rss.xml.ejs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><%- title %></title>
<link><%- url %></link>
<link rel="alternate" type="text/html" href="<%- url %>" />
<link rel="self" type="application/atom+xml" href="<%- url %>rss.xml" />
<id>tag:heathanderson.net,2022-12-09:223457</id>
<updated><%- new Date().toUTCString() %></updated>
<% for(slug in public.posts._data) { %>
<% var post = public.posts._data[slug] %>
<entry>
<title><%- post.title %></title>
<link rel="alternate" type="text/html" href="<%- url %><%- slug %>" />
<id><%- url %><%- slug %></id>
<published><%- new Date(post.date).toUTCString() %></published>
<author>
<name>Heath Anderson</name>
<uri><%- url %></uri>
</author>
<content type="html" xml:lang="en" xml:base="<%- url %>"><![CDATA[<%- partial(slug+"/index") %>]]></content>
</entry>
<% } %>
</feed>