blob: 70c72c9f0d8c39aaa0f4da0b71ef6c45210127cd (
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
|
---
title: 'Retired Gentoo developers'
navtitle: 'Retired developers'
nav1: inside-gentoo
nav2: developers
nav3: retired
nav3-show: true
nav3-weight: 30
layout: page-nav3
---
<table class="table table-striped">
<tr>
<th>Username</th>
<th>Name</th>
<th>Location</th>
<th>Roles</th>
</tr>
{% for entry in site.data.userinfo.retired %}
<tr>
<th>{{ entry[0] }}</th>
<td>{{ entry[1].name }}</td>
<td>{{ entry[1].location }}</td>
<td>{{ entry[1].roles }}</td>
</tr>
{% endfor %}
</table>
|