diff --git a/404.html b/404.html new file mode 100644 index 00000000..c472b4ea --- /dev/null +++ b/404.html @@ -0,0 +1,24 @@ +--- +layout: default +--- + + + +
Page not found :(
+The requested page could not be found.
+Number | Title | Author |
---|---|---|
{{page.kip|xml_escape}} | +{{page.title|xml_escape}} | +{% include authorlist.html authors=page.author %} | +
KIPs are separated into a number of types, and each has its own list of KIPs.
+ +All KIPs which are in the two-week "last call" status, please help review these and provide your feedback!
+ +{% assign kips = site.pages|where:"status","Last Call"|sort:"kip" %} +{% assign count = kips|size %} +{% if count > 0 %} +Number | Title | Type | Author |
---|---|---|---|
{{page.kip|xml_escape}} | +{{page.title|xml_escape}} | +{{page.type}} {{page.category|xml_escape}} | +{% include authorlist.html authors=page.author %} | +
N/A
+{% endif %} diff --git a/_layouts/kip.html b/_layouts/kip.html new file mode 100644 index 00000000..e4301cde --- /dev/null +++ b/_layouts/kip.html @@ -0,0 +1,44 @@ +--- +layout: default +--- + +Author | {% include authorlist.html authors=page.author %} |
---|---|
Discussions-To | {{ page["discussions-to"] | xml_escape }} |
Status | {{ page.status | xml_escape }} + {% if page.review-period-end != undefined %} + (review ends {{ page.review-period-end | xml_escape }}) + {% endif %} + |
Type | {{ page.type | xml_escape }} |
Category | {{ page.category | xml_escape }} |
Created | {{ page.created | xml_escape }} |
Updated | {{ page.updated | xml_escape }} |
Requires | {% include kipnums.html kips=page.requires %} |
Replaces | {% include kipnums.html kips=page.replaces %} |
Superseded by | {% include kipnums.html kips=page.superseded-by %} |
Resolution | {{ page.resolution | xml_escape }} |
KIP #{{ kip.kip }} - {{kip.title }} is in Last Call status. It is authored by {{ kip.author }} and was originally created {{ kip.created }}. It is in the {{ kip.category }} category of type {{ kip.type }}. Please review and note any changes that should block acceptance.
+ {% if kip.discussions-to %} +The author has requested that discussions happen at the following URL: {{ kip.discussions-to }}
+ {% else %} +Please visit the [klaytn/KIPs issues to comment](https://github.com/klaytn/KIPs/issues/{{kip.kip}}).
+ {% endif %} +