-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.xml
27 lines (26 loc) · 1.05 KB
/
feed.xml
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
27
---
layout: nil
---
<rss version="2.0">
<channel>
<title>Ack & Nak</title>
<link>http://ackandnak.com/</link>
<description>New web comics, ad nauseam</description>
<language>en-us</language>
<copyright>Copyright {{ site.time | date: "%Y" }} - Thumble Monks (Justin Knowlden and Carl Brahms)</copyright>
<lastBuildDate>{{ site.time | date: "%a, %d %b %Y %H:%M:%S %Z" }}</lastBuildDate>
<generator>Ack & Nak Custom Feed Robot, Eat Me</generator>
<ttl>40</ttl>
{% for post in site.posts %}
<item>
<title>{{ post.title | xml_escape }}</title>
<description>
<img src="http://ackandnak.com/images/comics/{{ post.comic }}" width="{{ post.width }}" height="{{ post.height }}" alt="{{ post.alt }}" title="{{ post.alt }}" />
<div class="caption">{{ post.content | xml_escape }}</div>
</description>
<pubDate>{{ post.date | date: "%a, %d %b %Y %H:%M:%S %Z" }}</pubDate>
<guid>http://ackandnak.com{{ post.id }}.html</guid>
</item>
{% endfor %}
</channel>
</rss>