-
Notifications
You must be signed in to change notification settings - Fork 1
/
about-us.html
108 lines (96 loc) · 3.48 KB
/
about-us.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
---
layout: page
title: About us
permalink: /about-us/
---
<div class="container">
<div id="hero" class="mt-4 mb-5">
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-6">
<p>About us</p>
<h1>We're ControlShift.</h1>
<p>
We think that advocacy organizations, campaigns, and movements are more powerful when they invite everyone to participate.
We build software in service of that vision, while also building a great place to do work that matters.
</p>
</div>
<div class="col-md-1">
</div>
<div class="col-md-3">
<img src="/assets/images/how_it_works/image-howitworks-hero-peeps.svg" class="img-fluid" alt="" />
</div>
<div class="row-full absolute d-none d-xl-block">
<img class="" src="/assets/images/how_it_works/image-howitworks-hero-biker.svg" style="position: absolute; top: 40px;" alt="" />
</div>
</div>
</div>
</div>
<div class="container-fluid bg-white text-black">
<div class="container p-0">
<div class="row pb-4 pt-4">
<div class="col-xs-12 offset-md-1 col-md-10">
<div class="row ms-0 p-0 pb-3 pt-3">
{% for fact in site.data.about_us %}
<div class="col-md-4 selling-point">
<div class="me-2">
<h5>{{fact.title}}</h5>
<p>{{fact.detail}}</p>
</div>
</div>
{% endfor %}
</div>
<h2>Work with Us</h2>
<div class="example">
<div class="row">
<div class="col-md-12">
<label>No current openings</label>
<p>
We're not currently hiring unfortunately.
</p>
</div>
</div>
</div>
<div class="row ms-0 p-0 pb-3 pt-3">
{% for benefit in site.data.careers %}
<div class="col-md-4 selling-point ">
<div class="me-2">
<h5>{{benefit.title}}</h5>
<p>{{benefit.detail}}</p>
</div>
</div>
{% endfor %}
</div>
<h2 class="pt-1">Our Team</h2>
<p>
We're a small team of software engineers and organizers with several decades of combined experience in the advocacy sector.
Our deep organizing and technology background, coupled with a close interest in our partners’
campaigns and goals, lets us develop tools that are particularly useful in facilitating effective grassroots organizing
and building strong and participatory organizations.
</p>
<img src="/assets/images/team.jpg" alt="Staff team photo" class="img-fluid" />
<div class="bio-card mt-3">
<h5>Nathan Woodhull</h5>
<em>Founder</em>
<ul class="nav">
<li class="nav-item">
<a href="mailto:[email protected]" class="nav-link">
</a>
</li>
<li class="nav-item">
<a href="https://twitter.com/woodhull" class="nav-link" aria-label="@woodhull on Twitter">
<i class="icon-twitter" aria-hidden="true"></i>
</a>
</li>
<li class="nav-item">
<a href="https://github.com/woodhull" class="nav-link" aria-label="@woodhull on GitHub">
<i class="icon-github" aria-hidden="true"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>