30 lines
1.0 KiB
XML
30 lines
1.0 KiB
XML
---
|
|
# This file is licensed under the MIT License (MIT) available on
|
|
# http://opensource.org/licenses/MIT.
|
|
|
|
lang: en
|
|
---
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<rss version="2.0">
|
|
<!-- Note: this file is built non-deterministically -->
|
|
<channel>
|
|
<title>Bitcoin conferences and events</title>
|
|
<link>https://bitcoin.org/en/events</link>
|
|
<description>This RSS feed allows to follow Bitcoin events and conferences.</description>
|
|
<image>
|
|
<title>Bitcoin conferences and events</title>
|
|
<url>https://bitcoin.org/img/icons/logo_rss.png?1528322191</url>
|
|
<link>https://bitcoin.org/en/events</link>
|
|
</image>
|
|
{% assign date_sorted_conferences = site.conferences | sort: 'date' %}
|
|
{% for p in date_sorted_conferences %}
|
|
<item>
|
|
<title>{{ p.title | htmlescape }}, {{ p.city | htmlescape }} - {{ p.country | htmlescape }}</title>
|
|
<link>{{p.link}}</link>
|
|
<guid>{{p.link}}</guid>
|
|
<pubDate>{{ p.date | date: "%a, %d %b %Y" }} 00:00:00 GMT</pubDate>
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|