This repository was archived by the owner on Jun 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcode-of-conduct.astro
More file actions
74 lines (65 loc) · 2.92 KB
/
code-of-conduct.astro
File metadata and controls
74 lines (65 loc) · 2.92 KB
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
---
import BodyText from "~/components/BodyText.astro";
import HeroForPage from "~/components/HeroForPage.astro";
import ContentLayout from "~/layouts/ContentLayout.astro";
---
<ContentLayout
canonical="https://2025.squiggleconf.com/code-of-conduct"
description="Code of Conduct for SquiggleConf: a Boston conference focused on excellent web dev tooling."
title="Code of Conduct"
>
<HeroForPage slot="hero">Code of Conduct</HeroForPage>
<BodyText class="contents-body-text" size="large">
SquiggleConf is dedicated to providing a respectful, harassment-free
community for everyone. We do not tolerate harassment or bullying of any
community member in any form. This does not only extend to members of the
SquiggleConf, but to anyone who chooses to become involved in the larger
SquiggleConf community of users, developers and integrators through events
or interactions.
</BodyText>
<BodyText class="contents-body-text" size="large">
Harassment includes offensive verbal/electronic comments related to personal
characteristics or choices, sexual images or comments in public or online
spaces, deliberate intimidation, bullying, stalking, following, harassing
photography or recording, sustained disruption of talks, Discord messages,
electronic meetings, physical meetings or other events, inappropriate
physical contact, or unwelcome sexual attention. Participants asked to stop
any harassing or bullying behavior are expected to comply immediately.
</BodyText>
<BodyText class="contents-body-text" size="large">
If a participant engages in harassing behavior, representatives of the
community may take reasonable action they deem appropriate, including
warning the offender, expulsion from any SquiggleConf event, or expulsion
from mailing lists, Discord groups, discussion boards, and other electronic
communications channels to resolve the issue. This may include expulsion
from SquiggleConf membership.
</BodyText>
<BodyText class="contents-body-text" size="large">
If you are being harassed, notice that someone else is being harassed, or
have any other concerns, please act to intercede or ask for help from any
member of the SquiggleConf, Discord group admins, website admins, or
organizers/representatives of any physical events put on under the auspices
of the SquiggleConf.
</BodyText>
—
<BodyText class="contents-body-text" size="large">
This Code of Conduct adapted from
<a
href="https://plone.org/foundation/materials/foundation-resolutions/code-of-conduct"
target="_blank"
rel="noreferrer"
>
plone.org/foundation/materials/foundation-resolutions/code-of-conduct</a
>.
</BodyText>
<BodyText class="contents-body-text" size="large">
The content of this Code of Conduct is licensed under a Creative Commons
Attribution-ShareAlike 4.0 International license.
</BodyText>
<style>
.contents-body-text {
margin: 2rem auto;
word-break: break-word;
}
</style>
</ContentLayout>