-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
303 lines (272 loc) · 9.27 KB
/
index.html
File metadata and controls
303 lines (272 loc) · 9.27 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FReD - FORRT Replication Database</title>
<link rel="icon" type="image/png" href="shared/images/favicon.png">
<link rel="stylesheet" href="shared/css/theme.css">
<style>
.hero {
background: linear-gradient(135deg, var(--fred-primary), var(--fred-primary-dark));
color: white;
padding: 4rem 0;
text-align: center;
position: relative;
}
.hero-header {
position: absolute;
top: 1rem;
right: 1rem;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
.hero p {
font-size: 1.25rem;
opacity: 0.9;
max-width: 700px;
margin: 0 auto 2rem;
}
.hero-logo {
width: 80px;
height: 80px;
border-radius: 12px;
margin-bottom: 1rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.app-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
padding: 3rem 0;
}
.app-card {
background: var(--fred-bg-card);
border-radius: 0.75rem;
box-shadow: var(--fred-shadow-lg);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.app-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.app-card-header {
background: var(--fred-primary);
color: white;
padding: 1.5rem;
}
.app-card-header h2 {
margin: 0 0 0.5rem;
}
.app-card-body {
padding: 1.5rem;
color: var(--fred-text);
}
.app-card-body ul {
margin: 1rem 0;
padding-left: 1.25rem;
}
.app-card-body li {
margin-bottom: 0.5rem;
}
.app-card .btn {
width: 100%;
margin-top: 1rem;
}
.features {
background: var(--fred-bg-alt);
padding: 3rem 0;
}
.features h2 {
text-align: center;
margin-bottom: 2rem;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.feature {
text-align: center;
padding: 1.5rem;
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.feature h3 {
margin-bottom: 0.5rem;
}
footer {
background: var(--fred-bg-alt);
padding: 2rem 0;
text-align: center;
color: var(--fred-text-muted);
}
footer a {
color: var(--fred-primary);
}
[data-theme="dark"] .app-card:hover {
box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
/* Resources cards dark mode */
.card {
background: var(--fred-bg-card);
color: var(--fred-text);
}
.card-body.text-center h3 {
color: var(--fred-text);
}
.card-body.text-center p {
color: var(--fred-text-muted);
}
</style>
</head>
<body>
<!-- Hero Section -->
<header class="hero">
<div class="hero-header">
<button class="theme-toggle" title="Toggle dark/light mode">
<svg class="icon-moon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
<svg class="icon-sun" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
</button>
</div>
<div class="container">
<img src="shared/images/fred-logo-inverted.png" alt="FReD Logo" class="hero-logo">
<h1>FReD</h1>
<p>FORRT Replication Database - A comprehensive collection of replication studies in psychology and related fields.</p>
<div class="btn-group" style="justify-content: center;">
<a href="explorer/index.html" class="btn btn-primary" style="background: white; color: var(--fred-primary);">Launch Explorer</a>
<a href="annotator/index.html" class="btn btn-secondary" style="background: transparent; border-color: white; color: white;">Launch Annotator</a>
</div>
</div>
</header>
<!-- App Cards -->
<main class="container">
<div class="app-cards">
<!-- Explorer Card -->
<div class="app-card">
<div class="app-card-header">
<h2>FReD Explorer</h2>
<p>Browse and analyze replication studies</p>
</div>
<div class="app-card-body">
<p>Explore the database of replication studies with interactive visualizations.</p>
<ul>
<li>Filter by source project, power, and search terms</li>
<li>Compare effect sizes with scatterplots</li>
<li>View forest plots and trends</li>
<li>Choose from 8 different success criteria</li>
<li>Export data as CSV or Excel</li>
</ul>
<a href="explorer/index.html" class="btn btn-primary">Open Explorer</a>
</div>
</div>
<!-- Annotator Card -->
<div class="app-card">
<div class="app-card-header">
<h2>FReD Annotator</h2>
<p>Annotate reference lists with replication info</p>
</div>
<div class="app-card-body">
<p>Check which studies in a reference list, journal article or reading list have been replicated.</p>
<ul>
<li>Paste DOIs or upload files (PDF, BibTeX, RIS)</li>
<li>Automatically match to FReD database</li>
<li>View replication outcomes at a glance</li>
<li>Generate shareable reports</li>
<li>Check for retracted studies</li>
</ul>
<a href="annotator/index.html" class="btn btn-primary">Open Annotator</a>
</div>
</div>
</div>
</main>
<!-- Features Section -->
<section class="features">
<div class="container">
<h2>About FReD</h2>
<div class="feature-grid">
<div class="feature">
<div class="feature-icon">🔍</div>
<h3>Comprehensive</h3>
<p>Covers replications from major projects like Many Labs, Psychological Science Accelerator, and individual studies.</p>
</div>
<div class="feature">
<div class="feature-icon">📊</div>
<h3>Multiple Criteria</h3>
<p>Assess replication success using 8 different statistical criteria, from simple significance to Small Telescopes.</p>
</div>
<div class="feature">
<div class="feature-icon">🌐</div>
<h3>Open Science</h3>
<p>Part of FORRT (Framework for Open and Reproducible Research Training). All data openly available.</p>
</div>
<div class="feature">
<div class="feature-icon">📝</div>
<h3>Easy Annotation</h3>
<p>Quickly annotate syllabi and reading lists to show students which findings have been replicated.</p>
</div>
</div>
</div>
</section>
<!-- Links Section -->
<section class="container" style="padding: 3rem 0;">
<h2 style="text-align: center; margin-bottom: 2rem;">Resources</h2>
<div class="feature-grid">
<div class="card">
<div class="card-body text-center">
<h3>FReD R Package</h3>
<p>For full functionality including real-time calculations, use the FReD R package.</p>
<a href="https://github.com/forrtproject/FReD" target="_blank" class="btn btn-secondary">View on GitHub</a>
</div>
</div>
<div class="card">
<div class="card-body text-center">
<h3>FORRT</h3>
<p>Learn more about the Framework for Open and Reproducible Research Training.</p>
<a href="https://forrt.org" target="_blank" class="btn btn-secondary">Visit FORRT</a>
</div>
</div>
<div class="card">
<div class="card-body text-center">
<h3>Raw Data</h3>
<p>Access the raw FReD dataset on the Open Science Framework.</p>
<a href="https://osf.io/9r62x/" target="_blank" class="btn btn-secondary">View on OSF</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>
<strong>FReD - FORRT Replication Database</strong><br>
<a href="https://forrt.org" target="_blank">FORRT</a> |
<a href="https://github.com/forrtproject/FReD" target="_blank">GitHub</a> |
<a href="https://osf.io/9r62x/" target="_blank">OSF</a>
</p>
<p style="margin-top: 1rem; font-size: 0.875rem;">
This is a static version of the FReD apps. Data is updated weekly via GitHub Actions.
</p>
</div>
</footer>
<!-- Theme Toggle Script -->
<script src="shared/js/theme-toggle.js"></script>
</body>
</html>