-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
366 lines (319 loc) · 10.7 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>-->
<!--<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>-->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb"
crossorigin="anonymous"
/>
<script
id="funraise-form-lib"
src="https://d2n4tvy2wsd0oo.cloudfront.net/widget/common/1.3/funraise.min.js"
type="text/javascript"
></script>
<script id="funraise-form-472c107b742" type="text/javascript">
var f = new Funraise({
id: "472c107b-a760-4be2-b990-81c429da14d5:742",
isPopup: true,
});
f.init();
</script>
<div id="fc-472c107b742"></div>
<style>
#fc-472c107b742 #popup-btn-472c107b742 {
display: none !important;
}
</style>
<script>
$(document).ready(function () {
$('a[href="#open-funraise"]').attr("data-toggle", "modal");
$('a[href="#open-funraise"]').attr(
"data-target",
"#donateModal-472c107b742"
);
});
</script>
<script type="text/javascript">
function showHome() {
document.getElementById("page-home").classList.remove("hide");
document.getElementById("page-fellowships").classList.add("hide");
document.getElementById("page-principles").classList.add("hide");
document.getElementById("page-openings").classList.add("hide");
}
function showFellowships() {
document.getElementById("page-home").classList.add("hide");
document.getElementById("page-fellowships").classList.remove("hide");
document.getElementById("page-openings").classList.add("hide");
document.getElementById("page-principles").classList.add("hide");
}
function showPrinciples() {
document.getElementById("page-home").classList.add("hide");
document.getElementById("page-principles").classList.remove("hide");
document.getElementById("page-openings").classList.add("hide");
document.getElementById("page-fellowships").classList.add("hide");
}
function showOpenings() {
document.getElementById("page-home").classList.add("hide");
document.getElementById("page-principles").classList.add("hide");
document.getElementById("page-openings").classList.remove("hide");
document.getElementById("page-fellowships").classList.add("hide");
}
</script>
<style>
/* Links */
a,
a:focus,
a:hover {
color: black;
font-weight: bold;
}
body {
height: 100%;
text-align: center;
background-color: #708090;
/*overflow: hidden;*/
}
/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
display: table;
width: 100%;
height: 100%; /* For at least Firefox */
min-height: 100%;
}
.site-wrapper-inner {
display: table-cell;
vertical-align: middle;
}
.inner {
/*overflow: scroll;*/
/*position: absolute;*/
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: white;
color: #383838;
margin-right: auto;
margin-left: auto;
margin-top: 50px;
margin-bottom: 50px;
padding-top: 40px;
padding-bottom: 20px;
padding-left: 30px;
padding-right: 30px;
width: 100%;
box-shadow: 0 0 5rem rgba(0, 0, 0, 0.5);
}
ul {
text-align: left;
}
@media screen and (min-width: 900px) {
.inner {
width: 600px;
}
}
.hide {
display: none;
}
.back-button {
position: absolute;
margin-top: -30px;
}
.back-button a {
font-weight: normal;
}
p {
text-align: left;
}
h1 {
font-size: 2em;
}
h2 {
text-align: left;
font-size: 1em;
font-weight: bold;
}
h4 {
text-align: left;
}
</style>
<title>Friends of DxE</title>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="inner">
<div id="page-home" class="show">
<h1>Friends of DxE</h1>
<br />
<h2>About Us</h2>
<p>
Friends of DxE (EIN 46-4318107), a 501(c)(3) tax exempt organization,
provides grants for the grassroots Direct Action Everywhere (DxE)
network and for other animal advocacy organizations and projects.
</p>
<h2>Grants</h2>
<p>
Please submit requests for funds using the form below. Note that
Friends of DxE only supports projects that fit our funding criteria
and that fulfill a tax exempt purpose. See our values
<a href="#" onclick="showPrinciples()">here.</a>
</p>
<h2>Fellowships</h2>
<p>
Fellowship applications are accepted on a rolling basis.<br />
Find out more about the fellowship process
<a href="#" onclick="showFellowships()">here</a>.
</p>
<h2>Donations</h2>
<p>
You can donate via <a href="#open-funraise">Funraise</a> or check,
payable to Friends of DxE, to: <br />Friends of DxE<br />PMB 328<br />2425
Channing Way, Ste. B<br />Berkeley, CA 94704
</p>
<p>
To see Friends of DxE's audited financial report and 990 form, please
email <a href="mailto:[email protected]">[email protected]</a>
</p>
<br />
<div class="row">
<div class="col-sm">
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSeRVyOB8QkxTKTrAcuS3v6n8jQc3ieg7VGLskFE7GmSSGBnMA/viewform?usp=sf_link"
target="_blank"
>Submit request</a
>
</div>
<div class="col-sm">
<a href="mailto:[email protected]" target="_blank">Contact</a>
</div>
</div>
</div>
<div id="page-fellowships" class="hide">
<div class="back-button">
<a href="#" onclick="showHome()"><- Back</a>
</div>
<h1>Fellowships</h1>
<br />
<p>
Friends of DxE awards fellowships to a small number of activist
fellows each year. In order to receive a fellowship, one must meet the
following criteria:
</p>
<ul>
<li>At least 6 months organizing or working group participation.</li>
<li>Highest demonstration of character and DxE values.</li>
<li>
Application and approval by DxE Fellowship Committee, DxE Steering
Committee, or similar advisory body, including:
<ul>
<li>Description of your activism.</li>
<li>Description of primary impacts.</li>
<li>Requested fund amounts.</li>
</ul>
</li>
<li>
Recommendation by DxE Fellowship Committee, DxE Steering Committee,
or similarly credible body.
</li>
</ul>
<p>
<center>
IF YOU MEET ALL OF THESE CRITERIA, YOU CAN FILL OUT
<a
href="https://docs.google.com/forms/d/e/1FAIpQLScqcbAwP7PHtcUmRRVnmg05eAoKe90qj6OPJzk5kVegKB6ZwA/viewform?usp=sf_link"
target="_blank"
>THIS FORM</a
>
TO APPLY FOR A FELLOWSHIP.
</center>
</p>
</div>
<div id="page-principles" class="hide">
<div class="back-button">
<a href="#" onclick="showHome()"><- Back</a>
</div>
<h1>Values</h1>
<br />
<h2>We are fiercely nonviolent.</h2>
<p>
We directly challenge systems of oppression with the power of
nonviolence.
</p>
<p>
We have empathy for the individuals caught up in violent systems,
seeking to bring them to the side of justice.
</p>
<p>
We accept suffering without retaliation for the sake of the cause.
Even when tested, we respond nonviolently with our actions and words.
</p>
<h2>We build purposeful communities.</h2>
<p>
We foster inclusive communities that empower, support, and build up
fellow activists. It is everyone's responsibility to create a
welcoming environment and treat each person in our communities with
respect. We don't gossip and we assume good faith.
</p>
<p>
We hold each other accountable and help each other grow by calling
each other in, not out, only resorting to public statements about
individuals when necessary for community safety and transparency.
</p>
<p>
Our community is the foundation on which the movement will grow.We
encourage ordinary people to become the best activists they can be
through training, mentorship, support, and opportunity.
</p>
<h2>We do our homework.</h2>
<p>
We draw on the best available evidence, from academia and beyond, to
inform our activism.
</p>
<p>
We seek diverse perspectives and also look outside the animal rights
movement for lessons and inspiration.
</p>
<p>
We measure and react. We're willing to innovate, experiment, take
calculated risks, and fail; and we're eager to adapt and shift course
based on outcomes.
</p>
<h2>We lead by serving.</h2>
<p>
We create power for the movement by empowering the people around us.
</p>
<p>
Our leadership team is first in line when a sacrifice is necessary.
</p>
<p>Ultimately, we are all serving animals and the movement.</p>
<h2>We aim to do exceptional work for the animals.</h2>
<p>
Our actions reflect the seriousness and urgency of our cause. Animal
rights is a social justice movement, not a hobby.
</p>
<p>We set clear goals and metrics and develop plans to achieve them.</p>
<p>
We are dependable, hold each other accountable, and get things done on
time and to the best of our ability.
</p>
<p>
We seek feedback, commit to continuous learning, and respond to
criticism with humility and grace.
</p>
<p>
We believe in the duty to disagree, but we maintain compassion even
when we disagree.
</p>
<p>We are radically candid.</p>
</div>
</div>
</div>
</div>