aboutsummaryrefslogtreecommitdiff
blob: d6007cec5d7bdbd39302c68e1186203126d40622 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
layout: tyrian
nav2-display: true
---
<h1 class="first-header">{{ page.title | xml_escape }}</h1>

<table class="table-bordered table-condensed table-striped pull-right col-md-4">
  <tr>
    <th>Author</th>
    <td>{{ page.Author | xml_escape }}</td>
  </tr>
  <tr>
    <th>Type</th>
    <td>{{ page.Type | xml_escape }}</td>
  </tr>
  <tr>
    <th>Status</th>
    <td>{{ page.Status | xml_escape }}</td>
  </tr>
  <tr>
    <th>Version</th>
    <td>{{ page.Version | xml_escape }}</td>
  </tr>
  <tr>
    <th>Created</th>
    <td>{{ page.Created | xml_escape }}</td>
  </tr>
  <tr>
    <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>
  {% if page.Requires %}
  <tr>
    <th>Requires</th>
    <td>
      {% for glep in page.Requires %}
        <a href="{{ glep[1] | xml_escape }}">{{ glep[0] }}</a>
      {% endfor %}
    </td>
  </tr>
  {% endif %}
  {% if page.Replaces %}
  <tr>
    <th>Replaces</th>
    <td>
      {% for glep in page.Replaces %}
        <a href="{{ glep[1] | xml_escape }}">{{ glep[0] }}</a>
      {% endfor %}
    </td>
  </tr>
  {% endif %}
  {% if page.Replaced-By %}
  <tr>
    <th>Replaced by</th>
    <td>
      {% for glep in page.Replaced-By %}
        <a href="{{ glep[1] | xml_escape }}">{{ glep[0] }}</a>
      {% endfor %}
    </td>
  </tr>
  {% endif %}
  <tr>
    <th>GLEP source</th>
    <td>
      <a href='https://gitweb.gentoo.org/data/glep.git/tree/{{ page.source | xml_escape }}'>{{ page.source | xml_escape }}</a>
    </td>
  </tr>
</table>

{{ content }}