-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcontact.html
80 lines (73 loc) · 2.03 KB
/
contact.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
---
layout: default
title: About Us
hideFooter: true
---
<div class="container">
<div class="row page-header col-xs-12">
<h1>The Team</h1>
</div>
<h2>Core Members</h2>
<div class="row">
{% for developer in site.data.coremembers %}
<div class="developer-details col-xs-2">
{% if developer.url %}
<a href="{{developer.url}}">
{% endif %}
<img class="box-shadow" src="{{ site.baseurl }}{{developer.img}}">
<p>{{developer.name}}</p>
{% if developer.url %}
</a>
{% endif %}
{% if developer.position %}
<p>{{developer.position}}</p>
{% endif %}
</div>
{% capture remainder %}{{ forloop.index | modulo: 6}}{% endcapture %}
{% if remainder == '0' %}
</div>
<div class="row">
{% endif %}
{% endfor %}
</div>
<h2>Past Members</h2>
<div class="row">
{% for developer in site.data.pastmembers %}
<div class="developer-details col-xs-2">
{% if developer.url %}
<a href="{{developer.url}}">
{% endif %}
<img class="box-shadow" src="{{ site.baseurl }}{{developer.img}}">
<p>{{developer.name}}</p>
{% if developer.url %}
</a>
{% endif %}
</div>
{% capture remainder %}{{ forloop.index | modulo: 6}}{% endcapture %}
{% if remainder == '0' %}
</div>
<div class="row">
{% endif %}
{% endfor %}
</div>
<h2>Contributors</h2>
<div class="row">
<ul>
{% for developer in site.data.contributors %}
<li><p>{{developer.name}}</p></li>
{% endfor %}
</ul>
</div>
<br><br>
<div class="row col-xs-12">
<p>
PowerPointLabs is developed at the School of Computing, National University of Singapore, with funding from an NUS Learning Innovation Fund, Technology (LIFT) grant.
</p>
</div>
<div class="row col-xs-12">
<h1>Contact</h1>
<p>
Have feedback or suggestions? Found a bug? Email us at <a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</div>