mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
Make releases notes layout and urls consistent with the alerts page Add RSS feed in download and version-history pages Add a canonical page with a redirect to the new url Simplify releases notes layouts
21 lines
700 B
XML
21 lines
700 B
XML
---
|
||
---
|
||
<?xml version="1.0" encoding="UTF-8"?>
|
||
<rss version="2.0">
|
||
<channel>
|
||
<title>Bitcoin-Qt releases</title>
|
||
<link>http://bitcoin.org/en/version-history</link>
|
||
<description>This RSS feed allows to follow Bitcoin-Qt new releases.</description>
|
||
<image>
|
||
<url>http://bitcoin.org/img/logo_rss.png</url>
|
||
<link>http://bitcoin.org/en/version-history</link>
|
||
</image>
|
||
{% catpage_for p in site.pages reversed sort_by:date category:release %}
|
||
<item>
|
||
<title>{{ p.title }}</title>
|
||
<link>http://bitcoin.org{{ p.url | replace:'.html','' }}</link>
|
||
<pubDate>{{ p.date | date: "%a, %d %b %Y" }}</pubDate>
|
||
</item>
|
||
{% endcatpage_for %}
|
||
</channel>
|
||
</rss>
|