2023-04-05 16:02:54 +00:00
|
|
|
---
|
|
|
|
layout: null
|
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
|
|
<channel>
|
2023-04-17 19:43:02 +00:00
|
|
|
<title>Decentralized Climate DCIPs</title>
|
2023-04-17 17:13:40 +00:00
|
|
|
<description>A feed of all DCIPs</description>
|
2023-04-05 16:02:54 +00:00
|
|
|
<link>{{ site.url }}</link>
|
|
|
|
<atom:link href="{{ site.url }}/all.xml" rel="self" type="application/rss+xml" />
|
|
|
|
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
|
2023-04-17 17:13:40 +00:00
|
|
|
{% assign dcips = site.pages | sort: 'dcip' %}
|
|
|
|
{% for dcip in dcips %}
|
2023-04-05 16:02:54 +00:00
|
|
|
<item>
|
2023-04-17 17:13:40 +00:00
|
|
|
<title>{{ dcip.title | xml_escape }}</title>
|
|
|
|
<category>{{ dcip.type | xml_escape }}/{{ dcip.category | xml_escape }}</category>
|
|
|
|
{% if dcip.discussions-to %}
|
|
|
|
<comments>{{ dcip.discussions-to | xml_escape }}</comments>
|
2023-04-05 16:02:54 +00:00
|
|
|
{% endif %}
|
2023-04-17 17:13:40 +00:00
|
|
|
<description>{{ dcip.content | xml_escape }}</description>
|
|
|
|
<pubDate>{{ dcip.created | date_to_rfc822 }}</pubDate>
|
|
|
|
<link>{{ site.url }}{{ dcip.url }}</link>
|
|
|
|
<guid isPermaLink="true">{{ site.url }}{{ dcip.url }}</guid>
|
2023-04-05 16:02:54 +00:00
|
|
|
</item>
|
|
|
|
{% endfor %}
|
|
|
|
</channel>
|
|
|
|
</rss>
|