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
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')
-rw-r--r--inside-gentoo/gleps/index.html33
-rw-r--r--inside-gentoo/index.html4
2 files changed, 37 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>
diff --git a/inside-gentoo/index.html b/inside-gentoo/index.html
index 94c2647..3365ce7 100644
--- a/inside-gentoo/index.html
+++ b/inside-gentoo/index.html
@@ -21,6 +21,10 @@ nav2: inside-gentoo-main
<h4 class="list-group-item-heading"><i class="fa fa-fw fa-briefcase"></i> Projects</h4>
<p class="list-group-item-text">We collaborate in projects. Check the resources, maybe there's something for you to contribute.</p>
</a>
+ <a href="gleps/" class="list-group-item">
+ <h4 class="list-group-item-heading"><i class="fa fa-fw fa-book"></i> GLEPs</h4>
+ <p class="list-group-item-text">Gentoo Linux Enhancement Proposals.</p>
+ </a>
<a href="artwork/" class="list-group-item">
<h4 class="list-group-item-heading"><i class="fa fa-fw fa-image"></i> Artwork</h4>
<p class="list-group-item-text">Check out artwork for your system. Features lots of Larry the Cow (we promise)!</p>