Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
<style>
.top-bar {
display: block;
border-bottom: 1px solid goldenrod;
background: lightgoldenrodyellow;
line-height: 3em;
text-align: center;
}
</style>

<aside class="top-bar">
We are planning to migrate the EIP &amp; ERC websites to a new rendering system in early <time datetime="2026-02">February 2026</time>. Please read our <a href="https://github.com/eips-wg/preprocessor/blob/master/MIGRATION.md">migration guide</a> for more details. Leave any questions/comments on the <a href="https://ethereum-magicians.org/t/eip-erc-website-migration-jekyll-zola/27375">discussion thread</a>.
</aside>

<header class="site-header" role="banner">
<div class="wrapper">
{%- assign default_paths = site.pages | map: "path" -%}
Expand Down
11 changes: 11 additions & 0 deletions _includes/rssnotice.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<item>
<title>EIP/ERC Website Migration</title>
<category>News</category>
<comments>https://ethereum-magicians.org/t/eip-erc-website-migration-jekyll-zola/27375</comments>
<description>
We are planning to migrate the EIP &amp;amp; ERC websites to a new rendering system in early &lt;time datetime=&quot;2026-02&quot;&gt;February 2026&lt;/time&gt;. Please read our &lt;a href=&quot;https://github.com/eips-wg/preprocessor/blob/master/MIGRATION.md&quot;&gt;migration guide&lt;/a&gt; for more details. Leave any questions/comments on the &lt;a href=&quot;https://ethereum-magicians.org/t/eip-erc-website-migration-jekyll-zola/27375&quot;&gt;discussion thread&lt;/a&gt;.
</description>
<pubDate>Fri, 02 Jan 2026 14:48:00 -0500</pubDate>
<link>https://github.com/eips-wg/preprocessor/blob/master/MIGRATION.md</link>
<guid isPermaLink="true">https://github.com/eips-wg/preprocessor/blob/master/MIGRATION.md</guid>
</item>
3 changes: 3 additions & 0 deletions rss/all.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ layout: null
<atom:link href="{{ site.url }}/all.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
{% assign eips = site.pages | sort: 'eip' %}

{% include rssnotice.xml %}

{% for eip in eips %}
<item>
<title>{{ eip.title | xml_escape }}</title>
Expand Down
1 change: 1 addition & 0 deletions rss/erc-last-call.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ layout: null
<atom:link href="{{ site.url }}/rss/last-call.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
{% assign eips = site.pages | sort: 'eip' %}
{% include rssnotice.xml %}
{% for eip in eips %}
{% if eip.category == "ERC" %}
{% if eip.status == "Last Call" %}
Expand Down
1 change: 1 addition & 0 deletions rss/erc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ layout: null
<atom:link href="{{ site.url }}/rss/erc.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
{% assign eips = site.pages | sort: 'eip' %}
{% include rssnotice.xml %}
{% for eip in eips %}
{% if eip.category == "ERC" %}
{% capture description %}
Expand Down
1 change: 1 addition & 0 deletions rss/last-call.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ layout: null
<atom:link href="{{ site.url }}/rss/last-call.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
{% assign eips = site.pages | sort: 'eip' %}
{% include rssnotice.xml %}
{% for eip in eips %}
{% if eip.status == "Last Call" %}
{% capture description %}
Expand Down
1 change: 1 addition & 0 deletions rss/nonerc-last-call.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ layout: null
<atom:link href="{{ site.url }}/rss/last-call.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
{% assign eips = site.pages | sort: 'eip' %}
{% include rssnotice.xml %}
{% for eip in eips %}
{% unless eip.category == "ERC" %}
{% if eip.status == "Last Call" %}
Expand Down
1 change: 1 addition & 0 deletions rss/nonerc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ layout: null
<atom:link href="{{ site.url }}/rss/last-call.xml" rel="self" type="application/rss+xml" />
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
{% assign eips = site.pages | sort: 'eip' %}
{% include rssnotice.xml %}
{% for eip in eips %}
{% unless eip.category == "ERC" %}
{% if eip.status == "Last Call" %}
Expand Down
Loading