mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
This commit adds an extra step to the build process to SHA256 checksum all the files that are built purely based on repository contents. The checksums file is uploaded to the webserver with the rest of the site content. A separate target is added to the Makefile to compare the remote sha256sums file to a locally-built file to see if they differ. This allows us to detect when a remote build may have gone astray.
26 lines
979 B
XML
26 lines
979 B
XML
---
|
||
# This file is licensed under the MIT License (MIT) available on
|
||
# http://opensource.org/licenses/MIT.
|
||
---
|
||
<?xml version="1.0" encoding="UTF-8"?>
|
||
<rss version="2.0">
|
||
<!-- Note: this file is built non-deterministically -->
|
||
<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/icons/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>
|