-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.xml
24 lines (23 loc) · 1018 Bytes
/
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
---
---
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Sprinters</title>
<link>https://sprinters.sh/new</link>
<description>Run your GitHub Actions jobs 10x cheaper on your own AWS account</description>
<language>en-us</language>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<atom:link href="{{ site.url }}/feed.xml" rel="self" type="application/rss+xml" />
{% for entry in site.data.new %}
<item>
<title>{{ entry.title | strip_html }}</title>
<link>{{ site.url }}{{ entry.href }}</link>
<description><![CDATA[{{ entry.details }}]]></description>
<pubDate>{{ entry.date | date_to_rfc822 }}</pubDate>
<guid>{{ site.url }}/new#{{ entry.date }}</guid>
<enclosure url="{{ site.url }}{{ entry.image }}" length="0" type="image/png"/>
</item>
{% endfor %}
</channel>
</rss>