-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (61 loc) · 2.56 KB
/
index.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
---
layout: default
title: ChangeSprout
---
<nav id="nav">
<ul>
<li><a href="#products">Products</a></li>
<li><a href="#news">News</a></li>
<li><a href="#services">Consulting Services</a></li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<section id="products" class="main">
<div class="spotlight">
<div class="content">
<header class="major">
<h2>Products</h2>
</header>
<p>We make two products that are available as a subscription serivce for advocacy organizations.</p>
<ul class="actions">
<li><a href="http://www.controlshiftlabs.com/" class="button">ControlShift</a></li>
<li><a href="http://www.visitthem.org/" class="button">VisitThem</a></li>
</ul>
</div>
<span class="image"><img src="images/pic01.jpg" alt="" /></span>
</div>
</section>
<section id="news" class="main special">
<header class="major">
<h2>News</h2>
</header>
<div id="news">
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</section>
<section id="services" class="main special">
<header class="major">
<h2>Consulting Services</h2>
<p>Our team is occasionally available for consulting engagements, with a focus on building ambitious software tools for organizing and activism.</p>
</header>
<h3>How We Can Help</h3>
<div class="how-we-help">
<ul>
<li><strong>Engineering</strong> We design, build, and maintain complex software with particular expertise in ruby, python and javascript.</li>
<li><strong>Operations</strong> Dev ops, infrastructure as code, automation, engineering for scalabiltiy and reliability. Particular expertise with AWS, Terraform and Linux.</li>
<li><strong>Analytics</strong> A/B testing, analytics, evaluation of program effectiveness, reporting.</li>
<li><strong>Design</strong> We partner with a network of designers and creatives to build extraordinary experiences.</li>
</ul>
</div>
<footer class="major">
<ul class="actions">
<li><a href="mailto:[email protected]" class="button special">Talk to Us</a></li>
</ul>
</footer>
</section>
</div>