Skip to content

Commit

Permalink
Some Jekyll fixes (#2277)
Browse files Browse the repository at this point in the history
  • Loading branch information
axic authored and nicksavers committed Sep 19, 2019
1 parent bb73522 commit d49550f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,6 @@ exclude:
- vendor/gems/
- vendor/ruby/
- eip-template.md
- ISSUE_TEMPLATE.md
- PULL_REQUEST_TEMPLATE.md
- README.md
2 changes: 1 addition & 1 deletion _includes/eiptable.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% assign eips = include.eips|where:"status",status|sort:"eip" %}
{% assign count = eips|size %}
{% if count > 0 %}
<h2>{{status}}</h2>
<h2 id="{{status|slugify}}">{{status}}</h2>
<table class="eiptable">
<thead>
<tr><th class="eipnum">Number</th><th class="title">Title</th><th class="author">Author</th></tr>
Expand Down
3 changes: 3 additions & 0 deletions _layouts/eip.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ <h1 class="page-heading">
<tr><th>Category</th><td>{{ page.category | xml_escape }}</td></tr>
{% endif %}
<tr><th>Created</th><td>{{ page.created | xml_escape }}</td></tr>
{% if page.updated != undefined %}
<tr><th>Updated</th><td>{{ page.updated | xml_escape }}</td></tr>
{% endif %}
{% if page.requires != undefined %}
<tr><th>Requires</th><td>{% include eipnums.html eips=page.requires %}</td></tr>
{% endif %}
Expand Down

0 comments on commit d49550f

Please sign in to comment.