forked from theq629/sfu-natlang.website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
all.rss
30 lines (28 loc) · 831 Bytes
/
all.rss
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
28
29
30
---
layout: rss
title: All
---
{% for post in site.posts limit:10 %}
<item>
<title>{{ post.title }}</title>
<description>
{{ post.content | xml_escape }}
</description>
<guid>{{ site.baseurl }}{{ post.url }}</guid>
<link>{{ site.baseurl }}{{ post.url }}</link>
<pubDate>{{ post.date | date: '%a, %d %b %Y %H:%M:%S %z' }}</pubDate>
</item>
{% endfor %}
{% bibliography %}
{% for item in bibliography limit:10 %}
<item>
<title>{% if item.title %}{{ item.title }}{% else %}Publication{% endif %}{% if item.year %} ({{ item.year }}){% endif %}</title>
<description>
{{ item.html | xml_escape }}
{% if post.abstract %}{{ post.abstract | xml_escape }}{% endif %}
</description>
<guid>{{ site.baseurl }}{{ item.pageurl }}</guid>
<link>{{ site.baseurl }}{{ item.pageurl }}</link>
</item>
{% endfor %}
{% endbibliography %}