DCIPs/rss/all.xml

28 lines
1.1 KiB
XML
Raw Normal View History

---
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>
<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 %}
<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>
{% 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>
</item>
{% endfor %}
</channel>
</rss>