aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-09-10 11:17:00 +0200
committerMichał Górny <mgorny@gentoo.org>2017-10-12 22:47:59 +0200
commitadfce6512605700cce2f07a6a014740315c2a835 (patch)
tree6764641f686f363d8e123b5b593db36efc072491 /inside-gentoo/gleps
parentFix deprecation warning. (diff)
downloadwww-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.html33
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>