-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCODE_OF_CONDUCT.html
More file actions
152 lines (141 loc) · 5.42 KB
/
CODE_OF_CONDUCT.html
File metadata and controls
152 lines (141 loc) · 5.42 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Code of Conduct - Epstein Files Transparency Initiative</title>
<link rel="stylesheet" href="assets/style.css">
<style>
.conduct-container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
.conduct-section {
margin-bottom: 2rem;
}
.conduct-section h2 {
color: var(--primary-color);
border-bottom: 2px solid var(--primary-color);
padding-bottom: 0.5rem;
margin-bottom: 1rem;
}
.conduct-section h3 {
color: #2c3e50;
margin-top: 1.5rem;
margin-bottom: 0.8rem;
}
.required-behaviors, .unacceptable-behaviors {
background: #f8f9fa;
padding: 1.5rem;
border-radius: 8px;
margin: 1rem 0;
}
.required-behaviors {
border-left: 4px solid var(--success-color);
}
.unacceptable-behaviors {
border-left: 4px solid var(--danger-color);
}
.enforcement-steps {
background: #fff3cd;
border-left: 4px solid #ffc107;
padding: 1rem;
border-radius: 4px;
margin: 1rem 0;
}
.survivor-resources {
background: linear-gradient(135deg, #f8f4ff 0%, #fff8f0 100%);
border: 1px solid #e1bee7;
padding: 1.5rem;
border-radius: 8px;
margin: 2rem 0;
}
ul {
margin-left: 2rem;
line-height: 1.8;
}
.back-link {
position: fixed;
top: 1rem;
left: 1rem;
background: var(--primary-color);
color: white;
padding: 0.5rem 1rem;
border-radius: 4px;
text-decoration: none;
transition: background 0.3s;
}
.back-link:hover {
background: #34495e;
}
.hotline {
font-weight: bold;
color: #7d3c98;
}
</style>
</head>
<body>
<a href="index.html" class="back-link">← Back to Tracker</a>
<header>
<h1>Code of Conduct</h1>
<p class="subtitle">A victim-centered approach to transparency and accountability</p>
</header>
<div class="conduct-container">
<div class="conduct-section">
<h2>Our Pledge</h2>
<p>This project is dedicated to victim-centered transparency and accountability. We pledge to make participation in our project a respectful, harassment-free experience for everyone, with special attention to survivor privacy and dignity.</p>
</div>
<div class="conduct-section">
<h2>Our Standards</h2>
<div class="required-behaviors">
<h3>✅ Required Behaviors</h3>
<ul>
<li><strong>Privacy First</strong>: Never publish survivor names without explicit consent</li>
<li><strong>Accuracy</strong>: Cite sources; correct errors promptly</li>
<li><strong>Civility</strong>: No pile-ons, threats, or doxxing</li>
<li><strong>Focus</strong>: Keep discussions on the disclosure framework, not speculation</li>
<li><strong>Transparency</strong>: Disclose any conflicts of interest</li>
</ul>
</div>
<div class="unacceptable-behaviors">
<h3>❌ Unacceptable Behaviors</h3>
<ul>
<li>Publishing or speculating about victim identities</li>
<li>Spreading unverified claims or conspiracy theories</li>
<li>Harassing congressional staff or representatives</li>
<li>Using this platform for partisan attacks</li>
<li>Sharing graphic content or descriptions</li>
</ul>
</div>
</div>
<div class="conduct-section">
<h2>Enforcement</h2>
<div class="enforcement-steps">
<p><strong>Violations may result in:</strong></p>
<ol>
<li>Warning and content removal</li>
<li>Temporary ban</li>
<li>Permanent ban</li>
</ol>
<p>Report violations by creating an issue with <strong>[CONDUCT]</strong> in the title.</p>
</div>
</div>
<div class="survivor-resources">
<h2>Survivor Resources</h2>
<p>If you or someone you know needs support:</p>
<ul>
<li><span class="hotline">RAINN National Sexual Assault Hotline:</span> 1-800-656-4673</li>
<li><span class="hotline">National Human Trafficking Hotline:</span> 1-888-373-7888</li>
</ul>
</div>
<div class="conduct-section">
<h2>Attribution</h2>
<p>This Code of Conduct is adapted from the Contributor Covenant, version 2.0, with specific provisions for survivor privacy.</p>
</div>
</div>
<footer>
<p><a href="index.html">Back to Tracker</a> | <a href="faq.html">FAQ & Sources</a> | <a href="https://github.com/markramm/Epstein-Transparency">GitHub</a></p>
</footer>
</body>
</html>