2018-03-28 12:37:04 +00:00
|
|
|
<style type="text/css">
|
|
|
|
.eiptable .title {
|
|
|
|
width: 67%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.eiptable .author {
|
|
|
|
width: 33%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{% for status in site.data.statuses %}
|
|
|
|
{% assign eips = include.eips|where:"status",status|sort:"eip" %}
|
|
|
|
{% assign count = eips|size %}
|
|
|
|
{% if count > 0 %}
|
2019-09-19 14:39:06 +00:00
|
|
|
<h2 id="{{status|slugify}}">{{status}}</h2>
|
2018-03-28 12:37:04 +00:00
|
|
|
<table class="eiptable">
|
2018-03-21 15:55:18 +00:00
|
|
|
<thead>
|
2018-03-28 12:37:04 +00:00
|
|
|
<tr><th class="eipnum">Number</th><th class="title">Title</th><th class="author">Author</th></tr>
|
2018-03-21 15:55:18 +00:00
|
|
|
</thead>
|
2018-03-28 12:37:04 +00:00
|
|
|
{% for page in eips %}
|
2018-03-21 15:55:18 +00:00
|
|
|
<tr>
|
2018-03-28 12:37:04 +00:00
|
|
|
<td class="eipnum"><a href="{{page.url|relative_url}}">{{page.eip|xml_escape}}</a></td>
|
|
|
|
<td class="title">{{page.title|xml_escape}}</td>
|
|
|
|
<td class="author">{% include authorlist.html authors=page.author %}</td>
|
2018-03-21 15:55:18 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|