-
Notifications
You must be signed in to change notification settings - Fork 6
/
feed.handlebars
23 lines (22 loc) · 1.08 KB
/
feed.handlebars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>ALL YOUR PANTS</title>
<description>The Comic From The Past About The Future</description>
<link>{{ baseUrl }}/</link>
<atom:link href="{{ baseUrl }}/feed.xml" rel="self" type="application/rss+xml" />
{{#each archive}}
<item>
<title>The One We Call: {{ this.time }}</title>
<description>
A great comic of struggle, loss and redemption.
<![CDATA[<img src="{{ this.url }}" alt="dickbutt" />]]>
</description>
<enclosure url="{{ this.url }}" length="0" type="{{ this.mime }}" />
<pubDate>{{xmlDate this.time }}</pubDate>
<link>{{ baseUrl }}{{ comicUrl this.time }}</link>
<guid isPermaLink="true">{{ baseUrl }}{{ comicUrl this.time }}</guid>
</item>
{{/each}}
</channel>
</rss>