-
Notifications
You must be signed in to change notification settings - Fork 136
/
tutorial-feed.xml
37 lines (31 loc) · 1.39 KB
/
tutorial-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
25
26
27
28
29
30
31
32
33
34
35
36
37
---
layout:
---
<?xml version="1.0" encoding="utf-8"?>
<rss version ="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link href="{{ site.url }}/tutorial-feed.xml" rel="self" type="application/rss+xml" />
<title>{{ site.title }}</title>
<link>{{ site.url }}{{ site.baseurl }}</link>
<description>A GitHub Jekyll Website maintained by Max Joseph and Leah Wasser</description>
<language>en-us</language>
<copyright>2017</copyright>
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
<generator>jekyll</generator>
<webMaster> {{ site.author.email }} ({{ site.author.name }})</webMaster>
{% for post in site.categories.tutorials %}
{% unless post.title == 'Creating animated maps with matplotlib & basemap in Python' %}
<item>
<title>{{ post.title | cdata_escape }}</title>
<link>{{ site.url }}{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
<description>{{ post.excerpt | xml_escape }}</description>
<author>{{ site.author.email }} ({{ post.authors | join: ', ' }})</author>
<category>{{ post.categories }}</category>
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
</item>
{% endunless %}
{% endfor %}
</channel>
</rss>