mirror of https://github.com/status-im/EIPs.git
25 lines
854 B
HTML
25 lines
854 B
HTML
---
|
|
# You don't need to edit this file, it's empty on purpose.
|
|
# Edit theme's home layout instead if you wanna make some changes
|
|
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
|
|
layout: home
|
|
---
|
|
|
|
{% assign statuses = site.pages|map:"status"|uniq %}
|
|
{% assign pages = site.pages|sort:"eip" %}
|
|
{% for status in statuses %}
|
|
{% if status != undefined %}
|
|
<h1>{{status}}</h1>
|
|
<table>
|
|
<thead>
|
|
<tr><th>Number</th><th>Title</th><th>Author</th><th>Layer</th></tr>
|
|
</thead>
|
|
{% for page in pages %}
|
|
{% if page.status == status %}
|
|
<tr><td><a href="{{page.url|relative_url}}">{{page.eip|xml_escape}}</a></td><td>{{page.title|xml_escape}}</td><td>{{page.author|xml_escape}}</td><td>{{page.layer|xml_escape}}</td></tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
{% endfor %}
|