-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
154 lines (132 loc) · 4.55 KB
/
team.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
---
layout: default
title: Team
---
<!-- PAGE TOP -->
<section class="page-title">
<div class="container">
<header>
<h2><!-- Page Title -->
Our <strong>Team</strong>
</h2><!-- /Page Title -->
</header>
</div>
</section>
<!-- /PAGE TOP -->
<!-- CONTENT -->
<section>
<div class="container">
<h3>Meet the <strong>Code for South Africans</strong></h3>
<div class="row margin-top60 people-list">
{% for person in site.data.our-team %}
{% if person.type == "current" %}
<div class="col-sm-4 col-md-3"><!-- member -->
<div class="box-content thumbnail text-center">
<span class="item-image">
<img class="img-responsive" src="{{person.image}}" alt="">
</span>
<div class="caption text-left">
<div class="clearfix margin-bottom10">
<div class="pull-left">
<h4 class="nomargin">{{person.name}}
<small class="block">{{person.pos}}</small>
</h4>
</div>
<div class="pull-right">
{% if person.social == "none" %}
{% else %}
<a href="{{person.social}}" target="_blank" class="btn ico-only btn-twitter btn-xs"><i class="fa fa-twitter"></i></a>
{% endif %}
</div>
</div>
</div>
</div>
</div><!-- /member -->
{% endif %}
{% endfor %}
</div>
</div>
</section>
<section class="alternate">
<div class="container">
<h3>People we've <strong>worked with</strong></h3>
<div class="row margin-top60 people-list"><!--Alumni-->
{% for person in site.data.our-team %}
{% if person.type == "alumni" %}
<div class="col-sm-4 col-md-3"><!-- member -->
<div class="box-content thumbnail text-center">
<span class="item-image">
<img class="img-responsive" src="{{person.image}}" alt="">
</span>
<div class="caption text-left">
<div class="clearfix margin-bottom10">
<div class="pull-left">
<h4 class="nomargin">{{person.name}}
<small class="block">{{person.pos}}</small>
</h4>
</div>
<div class="pull-right">
{% if person.social == "none" %}
{% else %}
<a href="{{person.social}}" target="_blank" class="btn ico-only btn-twitter btn-xs"><i class="fa fa-twitter"></i></a>
{% endif %}
</div>
</div>
</div>
</div>
</div><!-- /member -->
{% endif %}
{% endfor %}
</div><!--end of alumni-->
</div>
</section>
<section>
<div class="container">
<h3><strong>Smart people</strong> we consult</h3>
<div class="row margin-top60 people-list"><!--Smart people we consult -->
{% for person in site.data.our-team %}
{% if person.type == "consultant" %}
<div class="col-sm-4 col-md-3"><!-- member -->
<div class="box-content thumbnail text-center">
<span class="item-image">
<img class="img-responsive" src="{{person.image}}" alt="">
</span>
<div class="caption text-left">
<div class="clearfix margin-bottom10">
<div class="pull-left">
<h4 class="nomargin">{{person.name}}
<small class="block">{{person.pos}}</small>
</h4>
</div>
<div class="pull-right">
{% if person.social == "none" %}
{% else %}
<a href="{{person.social}}" target="_blank" class="btn ico-only btn-twitter btn-xs"><i class="fa fa-twitter"></i></a>
{% endif %}
</div>
</div>
</div>
</div>
</div><!-- /member -->
{% endif %}
{% endfor %}
</div>
<!-- /the team -->
</div>
</section>
<!-- /CONTENT -->
<!-- CALLOUT -->
<div class="callout styleBackgroundColor"><!-- add "styleBackgroundColor" class for colored background and white text OR "dark" for a dark callout -->
<div class="container">
<div class="row">
<div class="col-md-9"><!-- title + shortdesc -->
<h3>Want to be part of our team?</h3>
<p>If so, click to join now, and be part of our dynamic team!</p>
</div>
<div class="col-md-3"><!-- button -->
<a href="/careers.html" class="btn btn-primary btn-lg">Join Our Team</a>
</div>
</div>
</div>
</div>
<!-- /CALLOUT -->