Add 'all' page

This commit is contained in:
Nick Johnson 2018-03-21 16:29:32 +00:00
parent 3c19c59e85
commit d6c6b341c7
3 changed files with 8 additions and 1 deletions

View File

@ -22,6 +22,7 @@ url: "" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: ethereum
github_username: ethereum
header_pages:
- all.html
- core.html
- networking.html
- interface.html

View File

@ -1,6 +1,6 @@
{% assign bystatus = include.eips|sort:"eip"|group_by:"status" %}
{% for group in bystatus %}
{% if group.name != undefined %}
{% if group.name != "" %}
<h2>{{group.name}}</h2>
<table>
<thead>

6
all.html Normal file
View File

@ -0,0 +1,6 @@
---
layout: page
title: All
---
{% include eiptable.html eips=site.pages %}