diff --git a/_config.yml b/_config.yml index 1388c5e2..d6c9410d 100644 --- a/_config.yml +++ b/_config.yml @@ -36,8 +36,6 @@ twitter: # Build settings markdown: kramdown theme: minima -plugins: - - jekyll-feed permalink: /:slug diff --git a/last-call.xml b/last-call.xml index 35baa92e..8f0fbb2f 100644 --- a/last-call.xml +++ b/last-call.xml @@ -8,15 +8,28 @@ layout: null All EIPs which are in the two-week "last call" status, please help review these and provide your feedback! {{ site.url }} - {% assign eips = site.pages|where:"status","Last Call"|sort:"eip" %} - {% for page in eips %} + {{ site.time }} + {% assign eips = site.pages | sort: 'eip' %} + {% for eip in eips %} + {% if eip.status == "Last Call" %} + {% capture description %} +

EIP #{{ eip.eip }} - {{eip.title }} is in Last Call status. It is authored by {{ eip.author }} and was originally created {{ eip.created }}. It is in the {{ eip.category }} category of type {{ eip.type }}. Please review and note any changes that should block acceptance.

+ {% if eip.discussions-to %} +

The author has requested that discussions happen at the following URL: {{ eip.discussions-to }}

+ {% else %} +

Please visit the [ethereum/EIPs issues to comment](https://github.com/ethereum/EIPs/issues/{{eip.eip}}).

+ {% endif %} +
+ {{ eip.content }} + {% endcapture %} - {{ page.title | xml_escape }} - {{ page.content | xml_escape }} - {{ page.date | date: "%a, %d %b %Y %H:%M:%S %z" }} - {{ site.url }}/{{ page.url }} - {{ site.url }}/{{ page.url }} + {{ eip.title | xml_escape }} + {{ description | xml_escape }} + {{ eip.date | date: "%a, %d %b %Y %H:%M:%S %z" }} + {{ site.url }}/{{ eip.url }} + {{ site.url }}/{{ eip.url }} + {% endif %} {% endfor %}