-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrss.xml
More file actions
24 lines (24 loc) · 1.01 KB
/
rss.xml
File metadata and controls
24 lines (24 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
layout: null
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>{{ site.title }}</title>
<link>{{ site.url }}</link>
<description>{{ site.description
}}</description>
<language>en-us</language>
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
<lastBuildDate>{{
site.time | date_to_rfc822 }}</lastBuildDate>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>Jekyll
v{{ jekyll.version }}</generator> {% for post in site.posts limit:20 %} <item>
<title>{{ post.title }}</title>
<link>{{ site.url }}{{ post.url }}</link>
<description>{{ post.excerpt | strip_html | xml_escape }}</description>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
<guid>{{ site.url }}{{ post.url }}</guid>
</item> {% endfor %} </channel>
</rss>