mirror of
https://github.com/status-im/EIPs.git
synced 2025-02-07 20:44:17 +00:00
19 lines
556 B
HTML
19 lines
556 B
HTML
|
{% assign bystatus = include.eips|sort:"eip"|group_by:"status" %}
|
||
|
{% for group in bystatus %}
|
||
|
{% if group.name != undefined %}
|
||
|
<h2>{{group.name}}</h2>
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr><th>Number</th><th>Title</th><th>Author</th></tr>
|
||
|
</thead>
|
||
|
{% for page in group.items %}
|
||
|
<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>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|