diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-09-10 11:17:00 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-10-12 22:47:59 +0200 |
commit | adfce6512605700cce2f07a6a014740315c2a835 (patch) | |
tree | 6764641f686f363d8e123b5b593db36efc072491 /inside-gentoo/gleps | |
parent | Fix deprecation warning. (diff) | |
download | www-adfce6512605700cce2f07a6a014740315c2a835.tar.gz www-adfce6512605700cce2f07a6a014740315c2a835.tar.bz2 www-adfce6512605700cce2f07a6a014740315c2a835.zip |
Initial support for listing and displaying GLEPs
Diffstat (limited to 'inside-gentoo/gleps')
-rw-r--r-- | inside-gentoo/gleps/index.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/inside-gentoo/gleps/index.html b/inside-gentoo/gleps/index.html new file mode 100644 index 0000000..fe1ce4c --- /dev/null +++ b/inside-gentoo/gleps/index.html @@ -0,0 +1,33 @@ +--- +title: Gentoo Linux Enhancement Proposals +navtitle: GLEPs + +nav1: inside-gentoo +nav2: gleps +nav3: glep-index +nav2-show: true +nav2-weight: 25 +nav3-show: true +nav3-weight: 1 +layout: page-nav3 +body_class: nav-align-h2 +--- + +<h2>Published GLEPs</h2> + +<table class="table table-condensed table-striped"> + <tr> + <th>GLEP number</th> + <th>Type</th> + <th>Status</th> + <th>Title</th> + </tr> + {% for entry in site.data.gleps %} + <tr> + <td><a href='{{ entry.url }}'>{{ entry.number | xml_escape }}</a></td> + <td>{{ entry.type | xml_escape }}</td> + <td>{{ entry.status | xml_escape }}</td> + <td>{{ entry.title | xml_escape }}</td> + </tr> + {% endfor %} +</table> |