-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·157 lines (139 loc) · 5.15 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
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
155
156
157
---
authors:
- brad-czerniak
#categories: ["one", "two"]
#date: 2020-03-03 02:02:02
front: true
#hero_classes: "background-color--main-dark color--white"
menus:
# copyright: 1
footer: 1
main: 1
# utility: 1
meta:
description: "Free tools to make civic engagement easier."
# image:
# alt: "Default social image"
# src: required/meta-image--default.jpg
# robots: "index,follow"
# title: "Overrides the tab title and social titles"
#permalink: /index.html
#published: true
redirect_from:
- /home
#schema:
# type: "Thing"
sections:
- freshness
- cta
- mailchimp
#sitemap: true
#tags: ["three", "four"]
title: "Home"
---
<section class="layout--stripe background-color--second-light background-image--hero-home background-size--cover
color--third-dark text-align--center background-image-display-mobile--hide" id="home">
<div class="layout--stripe--inner">
{% include atoms/heading.html
children="Your campaign/nonprofit website, free"
classes=""
level="1"
%}
{% include atoms/spacer.html size="4" %}
<div class="display--flex layout--row justify-content--center">
<aside class="display--flex flex-direction--column justify-content--center">
<p class="font-size--2em">
We make free tools that allow you to live your dreams faster and easier.
</p>
</aside>
</div>
</div>
</section>
<section class="layout--stripe">
<div class="layout--stripe--inner">
{% include atoms/heading.html
children="Lower Barriers for all"
classes="text-align--center"
level="2"
%}
{% include atoms/spacer.html size="4" %}
<div class="display--flex layout--row justify-content--center">
<aside class="display--flex flex-direction--column justify-content--center">
<p>
We're a revolutionary new nonprofit: just <strong>nerds who love making software</strong> to make your life easier.
What motivated us to form a group is the insight it gives us into what kinds of software new-on-the-scene nonprofits
need to thrive.
</p>
<p>
You can use our starter kits to do things in the public interest, like start a business, run for office, make your
own nonprofit or club, or anything else under the sun. <a href="{% link collections/pages/contact.html %}">Please
let us know what cool stuff you're doing</a>!
</p>
<p class="text-align--center">
<a class="button cta" href="{% link collections/pages/about.html %}">More about us</a>
</p>
</aside>
</div>
</div>
</section>
<section class="layout--stripe background-color--grey-light text-align--center">
<div class="layout--stripe--inner">
{% include atoms/heading.html
children="Code, ready to go"
classes="text-align--center"
level="2"
%}
{% include atoms/spacer.html size="2" %}
<p>
All the repositories we use can be found on <a href="https://github.com/lowerbarriers">our GitHub organization page</a>.
Below are some of our favorites:
</p>
{% include atoms/spacer.html size="2" %}
<ul class="list-style--none layout--multiple--horizontal">
{% for repo in site.github.public_repositories %}
{% if repo.fork != true %}
<li class="card js--child--link display--flex flex-direction--column">
<div class="card--text padding-horizontal--4 padding-vertical--4">
<h3 class="card--title font-size--1p25em"><a href="{{ repo.html_url }}">{{ repo.name }}</a></h3>
<strong class="card--subtitle display--block font-size--p875em font-weight--100 font-style--italic">{{ repo.full_name }}</strong>
<p class="card--description font-size--p75em">{{ repo.description }}</p>
</div>
{% include atoms/image.html
src="1200x630/meta-image--code.jpg"
alt=""
classes="figure--card--image order--neg1 box-shadow--lifted-edges"
%}
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</section>
<section class="layout--stripe background-color--white text-align--center">
<div class="layout--stripe--inner">
{% include atoms/heading.html
children="Sunlight?"
classes="text-align--center"
level="2"
%}
<p>
Every meeting is open to the public. Every last cent is accounted for. Our bylaws and all our operating documentation
is not only publicly-available, but licensed for you to reuse and remix.
</p>
{% include atoms/spacer.html size="2" %}
<ul class="list-style--none display--flex flex-direction--row layout--row justify-content--space-between">
<li class="flex--1">
<a class="button" href="{% link collections/pages/by-laws.md %}">Bylaws</a>
</li>
<li class="flex--1">
<a class="button" href="{% link collections/pages/financials.html %}">Financials</a>
</li>
<li class="flex--1">
<a class="button" href="{% link collections/pages/events.html %}">Meetings</a>
</li>
<li class="flex--1">
<a class="button" href="{% link collections/pages/site-map.html %}">Full sitemap</a>
</li>
</ul>
</div>
</section>