forked from earthlab/earthlab.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
class-lesson-feed.xml
35 lines (30 loc) · 1.38 KB
/
class-lesson-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
---
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 }}/class-lesson-feed.xml" rel="self" type="application/rss+xml" />
<title>Earth Lab Data Intensive Classroom Modules</title>
<link>{{ site.url }}</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>
{% assign members = site.posts | where:"order", 1 %}
{% for member in members %}
<item>
<title>{{ member.module-title | xml_escape }}</title>
<link>{{ site.url }}{{ member.permalink }}</link>
<guid isPermaLink="true">{{ site.url }}{{ member.permalink }}</guid>
<description>{{ member.module-description | xml_escape }}</description>
<author>{{ site.author.email }} ({{ member.authors | join: ', ' }})</author>
<category>{{ member.category }}</category>
<pubDate>{{ member.modified | date_to_rfc822 }}</pubDate>
</item>
{% endfor %}
</channel>
</rss>