Skip to content

Commit

Permalink
Add info table to top of EIPs
Browse files Browse the repository at this point in the history
  • Loading branch information
Arachnid committed Mar 21, 2018
1 parent 8781574 commit 3e91f85
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions _layouts/eip.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
layout: default
---

<div class="home">
<h1 class="page-heading">EIP {{ page.eip | xml_escape }}: {{ page.title | xml_escape }}</h1>

<table>
<tr><th>Author</th><td>{{ page.author | xml_escape }}</td></tr>
<tr><th>Status</th><td>{{ page.status | xml_escape }}</td></tr>
<tr><th>Type</th><td>{{ page.type | xml_escape }}</td></tr>
<tr><th>Layer</th><td>{{ page.layer | xml_escape }}</td></tr>
<tr><th>Category</th><td>{{ page.category | xml_escape }}</td></tr>
<tr><th>Created</th><td>{{ page.created | xml_escape }}</td></tr>
</table>

{{ content }}

</div>

0 comments on commit 3e91f85

Please sign in to comment.