-
Notifications
You must be signed in to change notification settings - Fork 4
/
code_of_conduct.html
482 lines (400 loc) · 22.1 KB
/
code_of_conduct.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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> Ruby Conf Africa </title>
<link rel="icon" href="assets/images/logo/ruby.svg" type="image/x-icon">
<!-- add resource links below -->
<link rel="stylesheet" href="index.css"/>
<script defer src="assets/js/alpine.min.js"></script>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<header x-data="{navbarOpen: false,}" class="absolute left-0 top-0 z-50 w-full">
<!-- ================== menu section start ======================================================================-->
<div class="container mx-auto">
<div class="relative -mx-4 flex items-center justify-between">
<div class="w-60 max-w-full px-4">
<a href="index.html" class="block w-full py-5">
<img
src="assets/images/logo/arclogo.png"
alt="logo"
class="w-30"
/>
</a>
</div>
<div class="flex w-full items-center justify-between px-4">
<div>
<button
@click="navbarOpen = !navbarOpen"
:class="navbarOpen && 'navbarTogglerActive'"
id="navbarToggler"
class="absolute right-4 top-1/2 transform -translate-y-1/2 lg:hidden bg-transparent text-white px-3 py-2 rounded-lg focus:outline-none"
>
<span
class="block h-1 w-6 bg-white mb-1"
></span>
<span
class="block h-1 w-6 bg-white mb-1"
></span>
<span
class="block h-1 w-6 bg-white mb-1"
></span>
</button>
<nav
x-transition
:class="{'bg-[#81171b] text-black': navbarOpen, 'hidden': !navbarOpen}"
id="navbarCollapse"
class="absolute right-4 top-full w-full max-w-[250px] rounded-lg py-5 px-6 shadow transition-all lg:static lg:block lg:w-full lg:max-w-full lg:shadow-none"
>
<ul class="block lg:flex">
<li>
<a
href="index.html"
class="flex py-2 text-base font-bold text-white hover:text-primary lg:ml-12 lg:inline-flex"
>
Home
</a>
</li>
<li>
<a
href="about.html"
class="flex py-2 text-base font-bold text-white hover:text-primary lg:ml-12 lg:inline-flex"
>
Venue & Schedule
</a>
</li>
<li>
<a
href="speakers.html"
class="flex py-2 text-base font-bold text-white hover:text-primary lg:ml-12 lg:inline-flex"
>
Speakers
</a>
</li>
<li>
<a
href="sponsors.html"
class="flex py-2 text-base font-bold text-white hover:text-primary lg:ml-12 lg:inline-flex"
>
Sponsors
</a>
</li>
<li>
<a
href="code_of_conduct.html"
class="active flex py-2 text-base font-bold text-white hover:text-primary lg:ml-12 lg:inline-flex"
>
Code of Conduct
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<!-- ================== menu section end ======================================================================-->
</header>
<!-- ====================== Banner Section Start ======================================================================-->
<div id="banner" class="relative pt-[120px] pb-[10px] lg:pt-[10px] min-h-32 nav">
<div class="mx-auto max-w-2xl py-32 sm:py-28 lg:py-30">
<div class="text-center">
<h1 class="text-4xl font-bold text-white">RUBY CONF AFRICA 2024</h1>
<p class="mt-6 text-2xl font-bold leading-8 text-white">Nairobi - 26/27 July</p>
<p class="mt-6 text-xl font-bold leading-8 text-white">Theme: Agile, Open Source & Entrepreneurship</p>
</div>
</div>
</div>
<!-- ================= Banner Section End ================================================================================-->
<!-- ================= Code of Conduct Section Start ===================================================================-->
<div class="mb-10 md:mb-0 w-1/2 mx-auto relative">
<div class="px-4 lg:px-0">
<h2 class="text-6xl font-semibold text-center text-gray-800 leading-tight">
Code of conduct
</h2>
<h3 class="text-2xl text-gray-800 text-center font-semibold mb-4 mt-4">1.0 Purpose</h3>
<p class="pb-2 text-center">
A primary goal of <strong>Nairuby</strong> is to be inclusive to the
largest number of contributors, with the most varied and diverse
backgrounds possible. As such, we are committed to providing a
friendly, safe and welcoming environment for all, regardless of
gender, sexual orientation, ability, ethnicity, socio-economic status,
and religion (or lack thereof).
</p>
<p class="pb-2 text-center">
This code of conduct outlines our expectations for all those
who participate in our community, as well as the
consequences for unacceptable behavior.
</p>
<p class="pb-2 text-center">
We invite all those who participate in <strong>Nairuby</strong> to
help us create safe and positive experiences for everyone.
</p>
<h3 class="text-2xl text-gray-800 text-center font-semibold mb-4 mt-4">2.0 Open [Source/Culture/Tech] Citizenship</h3>
<p class="pb-2 text-center">
A supplemental goal of this Code of Conduct is to increase
open <strong>[source/culture/tech]</strong> citizenship by encouraging participants
to recognize and strengthen the relationships between our
actions and their effects on our community.
</p>
<p class="pb-2 text-center">
Communities mirror the societies in which they exist and positive action is
essential to counteract the many forms of inequality and abuses of power that
exist in society.
</p>
<p class="pb-2 text-center">
If you see someone who is making an extra effort to ensure
our community is welcoming, friendly, and encourages all
participants to contribute to the fullest extent, we want to
know.
</p>
<h3 class="text-2xl text-gray-800 text-center font-semibold mb-4 mt-4">3.0 Expected Behavior</h3>
<div class="flex justify-center">
<ul class="items-center">
<li>Participate in an authentic and active way. In doing so you contribute to the health and longevity of this community.</li>
<li>Exercise consideration and respect in your speech and actions.</li>
<li>Attempt collaboration before conflict. Refrain from demeaning, discriminatory, or harassing behavior and speech.</li>
<li>Be mindful of your surroundings and of your fellow participants.</li>
<li>Alert community leaders if you notice a dangerous situation, someone in distress, or violations of this Code of Conduct, even if they seem inconsequential.</li>
</ul>
</div>
<h3 class="text-2xl text-gray-800 text-center font-semibold mb-4 mt-4">4.0 Unacceptable Behavior</h3>
<p class="pb-2">
Unacceptable behaviors include: intimidating, harassing, abusive,
discriminatory, derogatory or demeaning speech or actions by
any participant in our community online, at all related
events and in one-on-one communications carried out in the
context of community business. Community event venues may be
shared with members of the public; please be respectful to
all patrons of these locations.
</p>
<p class="pb-2 text-center">
Harassment includes: harmful or prejudicial verbal or written
comments related to gender, sexual orientation, race, religion,
disability; inappropriate use of nudity and/or sexual images
in public spaces (including presentation slides); deliberate
intimidation, stalking or following; harassing photography or
recording; sustained disruption of talks or other events;
inappropriate physical contact, and unwelcome sexual attention.
</p>
<h3 class="text-2xl text-gray-800 text-center font-semibold mb-4 mt-4">5.0 Consequences of Unacceptable Behavior</h3>
<p class="pb-2">
Unacceptable behavior from any community member, including
sponsors and those with decision-making authority, will not be
tolerated.
</p>
<p class="pb-2 text-center">
Anyone asked to stop unacceptable behavior is expected to
comply immediately.
</p>
<p class="pb-2 text-center">
If a community member engages in unacceptable behavior, the
community organizers may take any action they deem
appropriate, up to and including a temporary ban or
permanent expulsion from the community without warning (and
without refund in the case of a paid event).
</p>
<h3 class="text-2xl text-gray-800 text-center font-semibold mb-4 mt-4">6.0 If You Witness or Are Subject to Unacceptable Behavior</h3>
<p class="pb-2 text-center">
If you are subject to or witness unacceptable behavior, or
have any other concerns, please notify a community organizer
as soon as possible.
</p>
<p class="pb-2 text-center">
Additionally, community organizers are available to help
community members engage with local law enforcement or to
otherwise help those experiencing unacceptable behavior feel
safe. In the context of in-person events, organizers will
also provide escorts as desired by the person experiencing
distress.
</p>
<h3 class="text-2xl text-gray-800 text-center font-semibold mb-4 mt-4">7.0 Addressing Grievances</h3>
<p class="pb-2 text-center">
If you feel you have been falsely or unfairly accused of
violating this Code of Conduct, you should notify a Nairuby
official with a concise description of your grievance. Your
grievance will be handled in accordance with our existing
governing policies.
</p>
<h3 class="text-2xl text-gray-800 text-center font-semibold mb-4 mt-4">8.0 Scope</h3>
<p class="pb-2 text-center">
We expect all community participants (contributors, paid or
otherwise; sponsors; and other guests) to abide by this Code
of Conduct in all community venues—online and in-person as
well as in all one-on-one communications pertaining to
community business.
</p>
<h3 class="text-2xl text-gray-800 text-center font-semibold mb-4 mt-4">9.0 Contact info</h3>
<p class="pb-2 text-center">
This should be a single person or a small team who can respond to issues directly:
</p>
<div class="flex justify-center">
<ul>
<li>Bernard Banta (<a href="https://twitter.com/BantaB">@BantaB</a>)</li>
<li>King'ori Maina (<a href="https://twitter.com/itskingori">@itskingori</a>)</li>
</ul>
</div>
<p class="pb-2 text-center">Emails can be provided on request for private matters. Twitter handles are
preferred due to privacy concerns.
</p>
<h3 class="text-2xl text-gray-800 text-center font-semibold mb-4 mt-4">License and attribution</h3>
<p class="pb-2 text-center">
This Code of Conduct is distributed under a <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike license</a>.
</p>
<p class="text-center">
Revision 1.0, adopted by the <a href="/">Nairuby Ruby Brigade</a> on 24th April 2014. Posted 24th April 2014.
</p>
</div>
</div>
<!-- ================= Code of Conduct Section End ===================================================================-->
<!-- ================= Sponsors Section Start ===============================================================================-->
<div class="pb-16" style="font-family: 'Lato', sans-serif">
<dh-component>
<div class="container mx-auto pt-16">
<!-- previous sponsors -->
<div class="w-11/12 xl:w-2/3 lg:w-2/3 md:w-2/3 mx-auto sm:mb-10 mb-16">
<h1 tabindex="0"
class="focus:outline-none xl:text-5xl md:text-3xl text-xl text-center text-gray-800 font-extrabold mb-5 pt-4">
Previous Sponsors
</h1>
</div>
<div class="xl:py-16 lg:py-16 md:py-16 sm:py-16 px-15 flex flex-wrap">
<div class="w-6/12 xl:w-1/4 lg:w-1/4 md:w-1/4 flex justify-center xl:pb-10 pb-16 items-center">
<img tabindex="0" class="focus:outline-none"
src="assets/images/logo/shopify_2.png" alt="Kwara" role="img"
width="200" height="200"
/>
</div>
<div class="w-6/12 xl:w-1/4 lg:w-1/4 md:w-1/4 flex justify-center xl:pb-10 pb-16 items-center">
<img tabindex="0" class="focus:outline-none"
src="https://finplusgroup.com/images/Finplus-logo-draft-p-500.png" alt="Finplus" role="img"
width="200" height="200"
/>
</div>
<div class="w-6/12 xl:w-1/4 lg:w-1/4 md:w-1/4 flex justify-center xl:pb-10 pb-16 items-center">
<img tabindex="0" class="focus:outline-none"
src="assets/images/logo/andela.jpeg" alt="Andela" role="img"
width="200" height="200"
/>
</div>
<div class="w-6/12 xl:w-1/4 lg:w-1/4 md:w-1/4 flex justify-center xl:pb-10 pb-16 items-center">
<img tabindex="0" class="focus:outline-none"
src="assets/images/logo/nairobits_logo2.png" alt="Nairobits" role="img"
width="200" height="200"
/>
</div>
<div class="w-6/12 xl:w-1/4 lg:w-1/4 md:w-1/4 flex justify-center xl:pb-10 pb-16 items-center">
<img tabindex="0" class="focus:outline-none"
src="assets/images/logo/kopokopo.png" alt="Kopokopo" role="img"
width="200" height="200"
/>
</div>
<div class="w-6/12 xl:w-1/4 lg:w-1/4 md:w-1/4 flex justify-center xl:pb-10 pb-16 items-center">
<img tabindex="0" class="focus:outline-none"
src="assets/images/logo/kwara_logo.jpeg" alt="Kwara" role="img"
width="200" height="200"
/>
</div>
</div>
<!-- current sponsors -->
<div class="w-11/12 xl:w-2/3 lg:w-2/3 md:w-2/3 mx-auto sm:mb-10 mb-16">
<h1 tabindex="0"
class="focus:outline-none xl:text-5xl md:text-3xl text-xl text-center text-gray-800 font-extrabold mb-5 pt-4">
Current Sponsors
</h1>
</div>
<div class="xl:py-16 lg:py-16 md:py-16 sm:py-16 px-15 flex flex-wrap">
<div class="w-6/12 xl:w-1/4 lg:w-1/4 md:w-1/4 flex justify-center xl:pb-10 pb-16 items-center">
<img tabindex="0" class="focus:outline-none"
src="https://finplusgroup.com/images/Finplus-logo-draft-p-500.png" alt="Finplus" role="img"
width="200" height="200"/>
</div>
</div>
</div>
</dh-component>
</div>
<!-- ================= Sponsors Section End ============================================================================-->
<!-- ================= CTA Section Start ===============================================================================-->
<section class="flex items-center bg-gray-100 font-poppins">
<div class="justify-center flex-1 px-4 py-4 mx-auto lg:py-10 md:px-7">
<div class="relative max-w-2xl mx-auto overflow-hidden rounded-3xl shadow cta">
<div class="z-20 lg:w-1/3 lg:text-start sm:px-6 lg:py-10 lg:px-8 lg:border-r-4 lg:border-gray-400">
<h2 class="text-xl font-bold md:text-2xl text-center text-white">
JUL
</h2>
<h2 class="mb-6 text-xl font-bold md:text-2xl text-center text-white">
26th & 27th
</h2>
</div>
<div class="lg:absolute top-0 lg:right-0 lg:w-2/3 lg:h-full lg:p-4 flex flex-col justify-center">
<p class="text-white text-center lg:text-start">Join 400 others in Nairobi, KE for a full day of inspiring keynotes and new connections at the premier conference for software Product Managers.</p>
<a href="registration.html"
class="mt-4 inline-flex items-center justify-center rounded-lg bg-[#81171b] py-4 w-full px-6 text-center text-base font-normal text-white hover:bg-opacity-90 sm:px-10 lg:px-8 xl:px-10">
Grab Your Ticket
</a>
</div>
</div>
</div>
</section>
<!-- ================= CTA Section End ===============================================================================-->
<!-- ================= Footer Section Start ===============================================================================-->
<footer class="mx-auto w-full max-w-container px-4 sm:px-6 lg:px-8">
<div class="border-t border-slate-900/5 py-10">
<img tabindex="0" class="mx-auto h-8 w-auto"
src="assets/images/logo/arc_logo_coloured.png"
alt="Finplus" role="img" width="250" height="250"/>
<p class="mt-5 text-center text-sm leading-6 text-slate-500">© 2024 Africa Ruby Community. All rights
reserved.</p>
<div class="mt-8 flex items-center justify-center space-x-4 text-sm font-semibold leading-6 text-slate-700"><a
href="/privacy-policy">Privacy policy</a>
<div class="h-4 w-px bg-slate-500/20"></div>
<a href="/terms">Terms & Conditions</a>
</div>
</div>
</footer>
<!-- ================= Footer Section End ===============================================================================-->
<!-- ================= Scripts Start ===============================================================================-->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="index.js"></script>
<script>
const dropdownToggle = document.getElementById('dropdown-toggle');
const dropdownContent = document.getElementById('dropdown-content');
const dropdownToggleCity = document.getElementById('dropdown-toggle-cities');
const dropdownContentCity = document.getElementById('dropdown-content-cities');
const dropdownToggleArea = document.getElementById('dropdown-toggle-areas');
const dropdownContentArea = document.getElementById('dropdown-content-areas');
dropdownToggle.addEventListener('click', () => {
if (dropdownContent.classList.contains('hidden')) {
dropdownContent.classList.remove('hidden');
} else {
dropdownContent.classList.add('hidden');
}
});
dropdownToggleCity.addEventListener('click', () => {
if (dropdownContentCity.classList.contains('hidden')) {
dropdownContentCity.classList.remove('hidden');
} else {
dropdownContentCity.classList.add('hidden');
}
});
dropdownToggleArea.addEventListener('click', () => {
if (dropdownContentArea.classList.contains('hidden')) {
dropdownContentArea.classList.remove('hidden');
} else {
dropdownContentArea.classList.add('hidden');
}
});
</script>
<!-- ================= Scripts End ===============================================================================-->
</body>
</html>