-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathfeed.xml
More file actions
23 lines (21 loc) · 876 Bytes
/
feed.xml
File metadata and controls
23 lines (21 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
---
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Planet hackNY</title>
<link>{{site.url}}</link>
<description>A link aggregator for hackNY alumNY</description>
<webMaster>steve@stevegattuso.me (Steve Gattuso)</webMaster>
<lastBuildDate>{{site.time | date_to_rfc822}}</lastBuildDate>
{% assign planet = site.data.planet | sort: "published_at" | reverse | limit: 25 %}
{% for post in planet limit:25 %}
<item>
<title>[{{ post.fellow.name}}] {{ post.title | xml_escape }}</title>
<guid>{{post.url}}</guid>
<link>{{ post.url }}</link>
<pubDate>{{ post.published_at | date_to_rfc822 }}</pubDate>
<description>Read the full blog post <a href="{{post.url | xml_escape}}">here</a>.</description>
</item>
{% endfor %}
</channel>
</rss>