EIPs/index.html
2018-03-20 16:08:01 +00:00

25 lines
810 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}}</a></td><td>{{page.Title}}</td><td>{{page.Author}}</td><td>{{page.Layer}}</td></tr>
{% endif %}
{% endfor %}
</table>
{% endif %}
{% endfor %}