mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 01:36:13 +00:00
32 lines
1.2 KiB
XML
32 lines
1.2 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">
|
||
<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>
|
||
<title>Bitcoin Core releases</title>
|
||
<url>https://bitcoin.org/img/icons/logo_rss.png</url>
|
||
<link>https://bitcoin.org/en/version-history</link>
|
||
</image>
|
||
{% filter_for p in site.pages reversed sort_by:versionint category:release %}
|
||
<item>
|
||
<title>{{ p.title | htmlescape }}</title>
|
||
<link>https://bitcoin.org{{ p.url | replace:'.html','' }}</link>
|
||
<guid>https://bitcoin.org{{ p.url | replace:'.html','' }}</guid>
|
||
{% if p.optional_date %}
|
||
<pubDate>{{ p.optional_date | date: "%a, %d %b %Y" }} 00:00:00 GMT</pubDate>
|
||
{% else %}
|
||
<pubDate>{{ site.time | date: "%a, %d %b %Y" }} 00:00:00 GMT</pubDate>
|
||
{% warn "This release doesn't have optional_date set" %}
|
||
{% endif %}
|
||
</item>
|
||
{% endfilter_for %}
|
||
</channel>
|
||
</rss>
|