forked from JesperDramsch/python-deadlines
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython-events-export.xml
26 lines (26 loc) · 1.58 KB
/
python-events-export.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
---
---
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/static/xml/rss-description.xsl" media="all"?>
<rss version="2.0"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
>
<channel>
<title>Newsfeed for Python Events Calendar from {{ site.title | xml_escape }}</title>
<description>{% if site.description %}{{ site.description | xml_escape }}{% endif %}</description>
<link>https://{{ site.domain }}/feed.xml</link>
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
{% for conf in site.data.conferences limit:23 %}
<item>
<title>{{ conf.conference | xml_escape }} {{ conf.year }} Conference Deadline</title>
<description><![CDATA[* name of the event: {{conf.conference | xml_escape}} {{ conf.year }}<br/>* type of event: Conference <br/>* focus on Python: Yes<br/>* approximate number of attendees: Unknown<br/>* location (incl. country): {{conf.place | xml_escape }}<br/>* dates/times/recurrence (incl. time zone): {%- translate_file dates/pretty_dates.html start=conf.start end=conf.end -%}<br/>* HTML link : <a href="{{ conf.link | xml_escape }}">{{ conf.conference | xml_escape }} {{ conf.year }}</a>]]></description>
<pubDate>{{ conf.start | date_to_rfc822 }}</pubDate>
<link>https://{{ site.domain }}/conference/{{conf.conference | slugify: "latin"}}-{{conf.year}}/</link>
<guid isPermaLink="false">{{conf.conference | slugify: "latin"}}-{{conf.year}}</guid>
<category>{{ conf.sub }}</category>
</item>
{% endfor %}
</channel>
</rss>