diff options
Diffstat (limited to '_layouts/glep.html')
-rw-r--r-- | _layouts/glep.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/_layouts/glep.html b/_layouts/glep.html index e280f30..4b6cb9c 100644 --- a/_layouts/glep.html +++ b/_layouts/glep.html @@ -2,36 +2,36 @@ layout: tyrian nav2-display: true --- -<h1 class="first-header">GLEP {{ page.number }}: {{ page.title }}</h1> +<h1 class="first-header">{{ page.Title | xml_escape }}</h1> <table class="table-bordered table-condensed table-striped pull-right"> <tr> <th>Type</th> - <td>{{ page.type }}</td> + <td>{{ page.Type | xml_escape }}</td> </tr> <tr> <th>Status</th> - <td>{{ page.status }}</td> + <td>{{ page.Status | xml_escape }}</td> </tr> <tr> <th>Author</th> - <td>{{ page.author }}</td> + <td>{{ page.Author | xml_escape }}</td> </tr> <tr> <th>Replaces</th> - <td>{{ page.replaces }}</td> + <td>{{ page.Replaces | xml_escape }}</td> </tr> <tr> <th>Replaced by</th> - <td>{{ page.replacedby }}</td> + <td>{{ page.Replaced-By | xml_escape }}</td> </tr> <tr> <th>Requires</th> - <td>{{ page.requires }}</td> + <td>{{ page.Requires | xml_escape }}</td> </tr> <tr> <th>Post history</th> - <td>{{ page.posthistory }}</td> + <td>{{ page.Post-History | xml_escape }}</td> </tr> </table> |