Use https urls for RSS feeds, opengraph icon and canonical urls

This commit is contained in:
Saivann 2014-02-05 20:16:54 -05:00
parent d8900d8156
commit 112062a7bc
5 changed files with 13 additions and 13 deletions

View file

@ -4,16 +4,16 @@
<rss version="2.0">
<channel>
<title>Bitcoin-Qt releases</title>
<link>http://bitcoin.org/en/version-history</link>
<link>https://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>
<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>http://bitcoin.org{{ p.url | replace:'.html','' }}</link>
<link>https://bitcoin.org{{ p.url | replace:'.html','' }}</link>
<pubDate>{{ p.date | date: "%a, %d %b %Y" }}</pubDate>
</item>
{% endfilter_for %}