mirror of https://github.com/status-im/EIPs.git
23 lines
928 B
XML
23 lines
928 B
XML
---
|
|
layout: null
|
|
---
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>Ethereum EIPs Last Call Review</title>
|
|
<description>All EIPs which are in the two-week "last call" status, please help review these and provide your feedback!</description>
|
|
<link>{{ site.url }}</link>
|
|
<atom:link href="{{ site.url }}/last-call.xml" rel="self" type="application/rss+xml" />
|
|
{% assign eips = site.pages|where:"status","Last Call"|sort:"eip" %}
|
|
{% for page in eips %}
|
|
<item>
|
|
<title>{{ page.title | xml_escape }}</title>
|
|
<description>{{ page.content | xml_escape }}</description>
|
|
<pubDate>{{ page.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
|
|
<link>{{ site.url }}/{{ page.url }}</link>
|
|
<guid isPermaLink="true">{{ site.url }}/{{ page.url }}</guid>
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss>
|