EIPs/_layouts/eip.html

35 lines
1.4 KiB
HTML
Raw Normal View History

2018-03-21 12:59:50 +00:00
---
layout: default
---
<div class="home">
<h1 class="page-heading">EIP {{ page.eip | xml_escape }}: {{ page.title | xml_escape }}</h1>
<table>
2018-03-21 16:04:37 +00:00
<tr><th>Author</th><td>{% include authorlist.html authors=page.author %}</td></tr>
{% if page["discussions-to"] != undefined %}
<tr><th>Discussions-To</th><td><a href="mailto:{{ page["discussions-to"] | uri_escape }}">{{ page["discussions-to"] | xml_escape }}</a></td></tr>
{% endif %}
2018-03-21 12:59:50 +00:00
<tr><th>Status</th><td>{{ page.status | xml_escape }}</td></tr>
<tr><th>Type</th><td>{{ page.type | xml_escape }}</td></tr>
{% if page.category != undefined %}
<tr><th>Category</th><td>{{ page.category | xml_escape }}</td></tr>
{% endif %}
2018-03-21 12:59:50 +00:00
<tr><th>Created</th><td>{{ page.created | xml_escape }}</td></tr>
{% if page.requires != undefined %}
<tr><th>Requires</th><td>{% include eipnums.html eips=page.requires %}</td></tr>
{% endif %}
{% if page.replaces != undefined %}
2018-03-21 16:04:37 +00:00
<tr><th>Replaces</th><td>{% include eipnums.html eips=page.replaces %}</td></tr>
{% endif %}
{% if page["superseded-by"] != undefined %}
2018-03-21 16:04:37 +00:00
<tr><th>Superseded by</th><td>{% include eipnums.html eips=page.superseded-by %}</td></tr>
{% endif %}
{% if page.resolution != undefined %}
<tr><th>Resolution</th><td><a href="{{page.resolution | uri_escape }}">{{ page.resolution | xml_escape }}</a></td></tr>
{% endif %}
2018-03-21 12:59:50 +00:00
</table>
{{ content }}
</div>