EIPs/index.html

24 lines
772 B
HTML
Raw Normal View History

---
# 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 %}
{% 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 site.pages %}
{% if page.Status == status %}
2018-03-20 15:25:15 +00:00
<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 %}