aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-09-15 12:00:08 +0200
committerMichał Górny <mgorny@gentoo.org>2017-10-12 22:47:59 +0200
commit9d251160076de79fec9f0b72c2e0048986de9f51 (patch)
treef2ee94126d6bfb4d3931a4f64b3577a388961f80 /_layouts
parentglep: Reuse the YAML frontmatter parser for GLEPs (diff)
downloadwww-9d251160076de79fec9f0b72c2e0048986de9f51.tar.gz
www-9d251160076de79fec9f0b72c2e0048986de9f51.tar.bz2
www-9d251160076de79fec9f0b72c2e0048986de9f51.zip
glep: Update the layout for new headers
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/glep.html30
1 files changed, 21 insertions, 9 deletions
diff --git a/_layouts/glep.html b/_layouts/glep.html
index 4b6cb9c..488af40 100644
--- a/_layouts/glep.html
+++ b/_layouts/glep.html
@@ -2,10 +2,14 @@
layout: tyrian
nav2-display: true
---
-<h1 class="first-header">{{ page.Title | xml_escape }}</h1>
+<h1 class="first-header">{{ page.title | xml_escape }}</h1>
<table class="table-bordered table-condensed table-striped pull-right">
<tr>
+ <th>Author</th>
+ <td>{{ page.Author | xml_escape }}</td>
+ </tr>
+ <tr>
<th>Type</th>
<td>{{ page.Type | xml_escape }}</td>
</tr>
@@ -14,24 +18,32 @@ nav2-display: true
<td>{{ page.Status | xml_escape }}</td>
</tr>
<tr>
- <th>Author</th>
- <td>{{ page.Author | xml_escape }}</td>
+ <th>Version</th>
+ <td>{{ page.Version | xml_escape }}</td>
</tr>
<tr>
- <th>Replaces</th>
- <td>{{ page.Replaces | xml_escape }}</td>
+ <th>Created</th>
+ <td>{{ page.Created | xml_escape }}</td>
</tr>
<tr>
- <th>Replaced by</th>
- <td>{{ page.Replaced-By | xml_escape }}</td>
+ <th>Last modified</th>
+ <td>{{ page.Last-Modified | xml_escape }}</td>
+ </tr>
+ <tr>
+ <th>Posting history</th>
+ <td>{{ page.Post-History | xml_escape }}</td>
</tr>
<tr>
<th>Requires</th>
<td>{{ page.Requires | xml_escape }}</td>
</tr>
<tr>
- <th>Post history</th>
- <td>{{ page.Post-History | xml_escape }}</td>
+ <th>Replaces</th>
+ <td>{{ page.Replaces | xml_escape }}</td>
+ </tr>
+ <tr>
+ <th>Replaced by</th>
+ <td>{{ page.Replaced-By | xml_escape }}</td>
</tr>
</table>