-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrss.xml
29 lines (29 loc) · 1.24 KB
/
rss.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
28
29
---
redirect_from: "/rss/"
---
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>JOCSE</title>
<description>The latest news from the Journal of Computational Science Education.</description>
<link>{{ "/" | absolute_url }}</link>
<atom:link href="{{ '/rss/' | absolute_url }}" rel="self"
type="application/rss+xml" />
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<copyright>Copyright 1994-{{ "now" | date: "%Y" }}, The Shodor Education Foundation, Inc.</copyright>
<language>en-US</language>
<generator>Jekyll v{{ jekyll.version }}</generator>
{% assign issues = site.issues | sort: "date" | reverse %}
{% for issue in issues limit:10 %}
<item>
{% include get-volume-issue-and-index.html item=issue %}
<title>Volume {{ volume-num }} Issue {{ issue-num }} is now available!</title>
{% assign url = issue.url | absolute_url %}
<link>{{ url }}</link>
<description>The latest issue of the Journal of Computational Science Education is now available online!</description>
<pubDate>{{ issue.date }}</pubDate>
<guid>{{ url }}</guid>
</item>
{% endfor %}
</channel>
</rss>