-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquestions.html
51 lines (47 loc) · 1.65 KB
/
questions.html
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
---
layout: splash
title: Questions
permalink: /questions/
---
<p>This page shows all 55 questions in the research agenda.</p>
<p>You can also see the questions arranged into <a href="../themes" class="btn btn--inverse">Themes</a></p>
<table>
<!-- <colgroup>
<col width="20%" />
<col width="80%" />
</colgroup>-->
<thead>
<tr class="header">
<th>Code</th>
<th>Question</th>
<th>Contributors</th>
</tr>
</thead>
<tbody>
{% assign sorted_qs = site.questions | sort: "question_num" %}
{% for question in sorted_qs %}
<tr>
<!-- <td><a href="{{ question.url | relative_url }}">{{ question.question_code }}</a></td> -->
<td><a href="{{ question.question_code }}">{{ question.question_code }}</a></td>
<td>{{ question.question_text }}</td>
<td> {% for contributor in question.contributors %}
{% assign contrib_info = site.contributors | where: 'username', contributor | first %}
{% if contrib_info %}
<!-- <li><a href="{{ contrib_info.url | relative_url }}"><img src="https://github.com/{{ contrib_info.username }}.png?size=100" style="border-radius: 50%;width: 1.5em;height: 1.5em;margin: auto 0.5em auto -2em;" />{{ contrib_info.firstname }} {{ contrib_info.surname }}</a></li> -->
<a href="{{ contrib_info.url | relative_url }}"><img src="https://github.com/{{ contrib_info.username }}.png?size=100" style="border-radius: 50%;width: 2em;height: 2em;margin: auto -0.5em auto 0em;" /></a>
{% endif %}
{% endfor %}</td>
</tr>
{% endfor %}
</tbody>
</table>
<!--
<ul>
{% for question in site.questions %}
<li>
<h4><a href="{{ question.url }}">{{ question.question_text }}</a></h4>
{{ question.excerpt }}
</li>
{% endfor %}
</ul>
-->