-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpeople.html
105 lines (98 loc) · 3.58 KB
/
people.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
layout: default
title: People
---
<!--<p>Some of the group in action (apparently Mark, Karin, Jacob, Vincent, Carlo were off doing real work).</p>
<div class="inset-image">
<img src="{.{ site.base }.}/img/sampayak.jpg" alt="Sampa-yak"
class="img-responsive img-rounded">
</div>-->
{% for role in site.roles %}
<h3 style="margin-top:3em;margin-bottom:1em">{{ role.name }}</h3>
{% if role.display == "full" %}
<dl class="dl-horizontal people">
{% for item in site.data.people %}
{% assign person = item[1] %}
{% if person.role == role.key %}
<dt class="person">
{% if person.webpage %}
<a href="{{ person.webpage |escape }}">
{% endif %}
{{ person.display_name }}
{% if person.webpage %}
</a>
{% endif %}
<br />
{% if person.img %}
<img src="img/{{ person.img }}" alt="{{ person.display_name }}" class="img-rounded" width="100">
{% else %}
<img src="img/profile_blank.jpg" alt="{{ person.display_name }}" class="img-rounded" width="100">
{% endif %}
</dt>
<dd>
{% if person.bio %}
{{ person.bio | markdownify }}
{% endif %}
</dd>
{% endif %}
{% endfor %}
</dl>
{% else %}
<div class="row" style="margin-bottom:1em">
{% assign matchCount = 0 %}
{% for item in site.data.people %}
{% assign person = item[1] %}
{% if person.role == role.key %}
{% if matchCount == 4 %}
{% assign matchCount = 0 %}
</div>
<div class="row" style="margin-bottom:1em">
{% endif %}
{% assign matchCount = matchCount | plus: 1 %}
<div class="col-sm-3 people">
<b>
{% if person.webpage %}
<a href="{{ person.webpage |escape }}">
{% endif %}
{{ person.display_name }}
{% if person.webpage %}
</a>
{% endif %}
</b>
<br />
{% if person.img %}
<img src="img/{{ person.img }}" alt="{{ person.display_name }}" class="img-rounded" />
{% else %}
<img src="img/profile_blank.jpg" alt="{{ person.display_name }}" class="img-rounded" />
{% endif %}
<br>
<p>
{% if person.bio %}
{{ person.bio | markdownify }}
{% endif %}
</p>
</div>
{% endif %}
{% endfor %}
</div>
{% endif %}
{% endfor %}
<h3 style="margin-top:3em">Collaborators</h3>
<div class="row collaborator">
<div class="col-md-6"><img src="img/path_logo.jpg" class="img-responsive" alt="Responsive image"></div>
<div class="col-md-6"><img src="img/gates_foundation_logo.png" class="img-responsive" alt="Responsive image"></div>
</div>
<div class="row collaborator">
<div class="col-md-6"><img src="img/redcross_logo.png" class="img-responsive" alt="Responsive image"></div>
<div class="col-md-6"><img src="img/mercy_corp_logo.gif" class="img-responsive" alt="Responsive image"></div>
</div>
<div class="row collaborator">
<div class="col-md-6"><img src="img/unicef_logo.png" class="img-responsive" alt="Responsive image"></div>
<div class="col-md-6"><img src="img/village_reach_logo.png" class="img-responsive" alt="Responsive image"></div>
</div>
<div class="row collaborator">
<div class="col-md-6"><img src="img/usaid_logo.jpg" class="img-responsive" alt="Responsive image"></div>
<div class="col-md-6"><a href="http://dfslab.net/">
<img src="img/dfs-lab-logo.png" class="img-responsive" alt="Responsive image"></a></div>
</div>
<br>