mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 17:56:16 +00:00
23 lines
814 B
XML
23 lines
814 B
XML
---
|
||
---
|
||
<?xml version="1.0" encoding="UTF-8"?>
|
||
<rss version="2.0">
|
||
<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/logo_rss.png</url>
|
||
<link>https://bitcoin.org/en/events</link>
|
||
</image>
|
||
{% filter_for p in site.conferences sort_by:date %}
|
||
<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>
|
||
{% endfilter_for %}
|
||
</channel>
|
||
</rss>
|