forked from DecentralizedClimateFoundation/DCIPs
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
---
|
|
layout: null
|
|
---
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>Decentralized Climate DCIPs</title>
|
|
<description>All updates for DCRCs</description>
|
|
<link>{{ site.url }}</link>
|
|
<atom:link href="{{ site.url }}/rss/dcrc.xml" rel="self" type="application/rss+xml" />
|
|
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
|
|
{% assign dcips = site.pages | sort: 'dcip' %}
|
|
{% for dcip in dcips %}
|
|
{% if dcip.category == "DCRC" %}
|
|
{% capture description %}
|
|
<p><strong>DCIP #{{ dcip.dcip }} - {{dcip.title }}</strong> is in the {{ dcip.category }} category of type {{ dcip.type }} and was just updated.</p>
|
|
{% if dcip.discussions-to %}
|
|
<p>The author has requested that discussions happen at the following URL: <a href="{{ dcip.discussions-to }}">{{ dcip.discussions-to }}</a></p>
|
|
{% endif %}
|
|
<hr />
|
|
{{ dcip.content }}
|
|
{% endcapture %}
|
|
<item>
|
|
<title>{{ dcip.title | xml_escape }}</title>
|
|
<description>{{ description | xml_escape }}</description>
|
|
<pubDate>{{ dcip.created | date_to_rfc822 }}</pubDate>
|
|
<link>{{ site.url }}/{{ dcip.url }}</link>
|
|
<guid isPermaLink="true">{{ site.url }}/{{ dcip.url }}</guid>
|
|
</item>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|