mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 17:56:16 +00:00
21 lines
706 B
XML
21 lines
706 B
XML
---
|
||
---
|
||
<?xml version="1.0" encoding="UTF-8"?>
|
||
<rss version="2.0">
|
||
<channel>
|
||
<title>Bitcoin Core releases</title>
|
||
<link>https://bitcoin.org/en/version-history</link>
|
||
<description>This RSS feed allows to follow Bitcoin Core new releases.</description>
|
||
<image>
|
||
<url>https://bitcoin.org/img/logo_rss.png</url>
|
||
<link>https://bitcoin.org/en/version-history</link>
|
||
</image>
|
||
{% filter_for p in site.pages reversed sort_by:date category:release %}
|
||
<item>
|
||
<title>{{ p.title }}</title>
|
||
<link>https://bitcoin.org{{ p.url | replace:'.html','' }}</link>
|
||
<pubDate>{{ p.date | date: "%a, %d %b %Y" }}</pubDate>
|
||
</item>
|
||
{% endfilter_for %}
|
||
</channel>
|
||
</rss>
|