Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
Latest commit
154 lines (132 loc) · 4.55 KB
/
Copy pathteam.html
File metadata and controls
154 lines (132 loc) · 4.55 KB
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 -->
<sectionclass="page-title">
<divclass="container">
<header>
<h2><!-- Page Title -->
Our <strong>Team</strong>
</h2><!-- /Page Title -->
</header>
</div>
</section>
<!-- /PAGE TOP -->
<!-- CONTENT -->
<section>
<divclass="container">
<h3>Meet the <strong>Code for South Africans</strong></h3>
<divclass="row margin-top60 people-list">
{% for person in site.data.our-team %}
{% if person.type == "current" %}
<divclass="col-sm-4 col-md-3"><!-- member -->
<divclass="box-content thumbnail text-center">
<spanclass="item-image">
<imgclass="img-responsive" src="{{person.image}}" alt="">
</span>
<divclass="caption text-left">
<divclass="clearfix margin-bottom10">
<divclass="pull-left">
<h4class="nomargin">{{person.name}}
<smallclass="block">{{person.pos}}</small>
</h4>
</div>
<divclass="pull-right">
{% if person.social == "none" %}
{% else %}
<ahref="{{person.social}}" target="_blank" class="btn ico-only btn-twitter btn-xs"><iclass="fa fa-twitter"></i></a>
{% endif %}
</div>
</div>
</div>
</div>
</div><!-- /member -->
{% endif %}
{% endfor %}
</div>
</div>
</section>
<sectionclass="alternate">
<divclass="container">
<h3>People we've <strong>worked with</strong></h3>
<divclass="row margin-top60 people-list"><!--Alumni-->
{% for person in site.data.our-team %}
{% if person.type == "alumni" %}
<divclass="col-sm-4 col-md-3"><!-- member -->
<divclass="box-content thumbnail text-center">
<spanclass="item-image">
<imgclass="img-responsive" src="{{person.image}}" alt="">
</span>
<divclass="caption text-left">
<divclass="clearfix margin-bottom10">
<divclass="pull-left">
<h4class="nomargin">{{person.name}}
<smallclass="block">{{person.pos}}</small>
</h4>
</div>
<divclass="pull-right">
{% if person.social == "none" %}
{% else %}
<ahref="{{person.social}}" target="_blank" class="btn ico-only btn-twitter btn-xs"><iclass="fa fa-twitter"></i></a>
{% endif %}
</div>
</div>
</div>
</div>
</div><!-- /member -->
{% endif %}
{% endfor %}
</div><!--end of alumni-->
</div>
</section>
<section>
<divclass="container">
<h3><strong>Smart people</strong> we consult</h3>
<divclass="row margin-top60 people-list"><!--Smart people we consult -->
{% for person in site.data.our-team %}
{% if person.type == "consultant" %}
<divclass="col-sm-4 col-md-3"><!-- member -->
<divclass="box-content thumbnail text-center">
<spanclass="item-image">
<imgclass="img-responsive" src="{{person.image}}" alt="">
</span>
<divclass="caption text-left">
<divclass="clearfix margin-bottom10">
<divclass="pull-left">
<h4class="nomargin">{{person.name}}
<smallclass="block">{{person.pos}}</small>
</h4>
</div>
<divclass="pull-right">
{% if person.social == "none" %}
{% else %}
<ahref="{{person.social}}" target="_blank" class="btn ico-only btn-twitter btn-xs"><iclass="fa fa-twitter"></i></a>
{% endif %}
</div>
</div>
</div>
</div>
</div><!-- /member -->
{% endif %}
{% endfor %}
</div>
<!-- /the team -->
</div>
</section>
<!-- /CONTENT -->
<!-- CALLOUT -->
<divclass="callout styleBackgroundColor"><!-- add "styleBackgroundColor" class for colored background and white text OR "dark" for a dark callout -->
<divclass="container">
<divclass="row">
<divclass="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>
<divclass="col-md-3"><!-- button -->
<ahref="/careers.html" class="btn btn-primary btn-lg">Join Our Team</a>
</div>
</div>
</div>
</div>
<!-- /CALLOUT -->