-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
343 lines (303 loc) · 15.7 KB
/
index.html
File metadata and controls
343 lines (303 loc) · 15.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learn with MC2 Center</title>
<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=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<!-- Not considered best practice, but this should work for our purposes :) -->
<style type="text/tailwindcss">
body {
font-family: 'Lato';
}
@layer utilities {
.bg-mc2-green1 {
background-color: #18736B;
}
.text-mc2-green1 {
color: #18736B;
}
.bg-mc2-blue1 {
background-color: #688EC5;
}
.text-mc2-blue1 {
color: #688EC5;
}
.bg-mc2-blue2 {
background-color: #3B588F;
}
.text-mc2-blue2 {
color: #3B588F;
}
.bg-mc2-yellow {
background-color: #F5B33C;
}
.text-mc2-yellow {
color: #F5B33C;
}
.bg-mc2-blue3 {
background-color: #17284C;
}
.text-mc2-blue3 {
color: #17284C;
}
.bg-mc2-cyan1 {
background-color: #B0DDDF;
}
.text-mc2-cyan1 {
color: #B0DDDF;
}
.bg-mc2-cyan2 {
background-color: #7EC8CC;
}
.text-mc2-cyan2 {
color: #7EC8CC;
}
.bg-mc2-cyan3 {
background-color: #4DB3BB;
}
.text-mc2-cyan3 {
color: #4DB3BB;
}
.bg-mc2-green2 {
background-color: #38878B;
}
.text-mc2-green2 {
color: #38878B;
}
}
</style>
</head>
<body>
<!-- TOP NAV -->
<header class="bg-mc2-green1 text-white shadow-sm py-4 px-6 md:px-12 lg:px-24">
<nav class="flex items-center justify-between max-w-7xl mx-auto">
<p class="text-2xl text-white rounded-md p-2">MC<sup>2</sup> Center Education</p>
<!-- Links on the right -->
<div class="md:flex space-x-8">
<a
class="text-blue-200 hover:text-white font-medium transition duration-300 rounded-md p-2"
href="#modules"
>
Learning Modules
</a>
<a
class="text-blue-200 hover:text-white font-medium transition duration-300 rounded-md p-2"
href="#instructors"
>
Meet the Instructor
</a>
<a
class="text-blue-200 hover:text-white font-medium transition duration-300 rounded-md p-2"
href="https://sagebionetworks.org/community/mc2-center"
target="_blank"
rel="noopener noreferrer"
>
About MC<sup>2</sup> Center
</a>
</div>
</nav>
</header>
<!-- TOP SECTION -->
<section id="top" class="bg-gradient-to-r from-indigo-600 to-blue-500 text-white py-20 px-6 md:px-12 lg:px-24 text-center">
<div class="max-w-6xl mx-auto">
<!-- big text -->
<p class="text-xl md:text-2xl lg:text-3xl font-extralight p-2">Learn with MC<sup>2</sup> Center</p>
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6 p-2">
<span class="text-teal-200">Cancer Complexity Education</span>
</h1>
<!-- short description -->
<p class="text-lg md:text-xl mb-10 opacity-90 p-2">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis placerat vulputate suscipit. Proin commodo porttitor nibh vitae tempor.
</p>
<!-- call to action button -->
<a
class="inline-block bg-white text-blue-700 font-bold py-3 px-8 rounded-full shadow-lg hover:bg-gray-100 hover:scale-105 transition duration-300 ease-in-out transform"
href="https://sagebionetworks.moodlecloud.com/?redirect=0"
target="_blank"
rel="noopener noreferrer"
>
Get Started Today
</a>
</div>
</section>
<!-- MODULES SECTION -->
<section id="modules" class="py-16 px-6 md:px-12 lg:px-24 bg-gray-50">
<div class="max-w-7xl mx-auto">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12 text-gray-800">Learning Modules</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
<!-- START CARD -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300 transform hover:-translate-y-1">
<!-- icon; see https://fonts.google.com/icons for more options -->
<div class="flex items-center justify-center w-16 h-16 bg-teal-100 text-teal-600 rounded-full mb-6 mx-auto">
<span class="material-symbols-outlined">egg</span>
</div>
<!-- title -->
<h3 class="text-xl font-semibold text-gray-900 mb-4 text-center">
Protein-Protein Docking - Computational Methods in Cancer Biology Research
<p class="text-lg md:text-xl mb-10 opacity-90 p-2"> Yale University
</p>
</h3>
<!-- description -->
<p class="text-gray-600 text-center">
Participants will use computational modeling to assess antibody-protein binding in the context of a controlled exercise
leveraging online docking servers, CSM-AB and AlphaFold3. Some coding experience is encouraged. Participation is open to
students, post-docs, early career professionals and clinicians.
</p>
</div>
<!-- END CARD -->
<!-- START CARD -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300 transform hover:-translate-y-1">
<!-- icon; see https://fonts.google.com/icons for more options -->
<div class="flex items-center justify-center w-16 h-16 bg-blue-100 text-blue-600 rounded-full mb-6 mx-auto">
<span class="material-symbols-outlined">menu_book</span>
</div>
<!-- title -->
<h3 class="text-xl font-semibold text-gray-900 mb-4 text-center">
Creating Independent Learning Modules from Legacy Content
<p class="text-lg md:text-xl mb-10 opacity-90 p-2"> MC<sup>2</sup> Center
</p>
</h3>
<!-- description -->
<p class="text-gray-600 text-center">
The MC<sup>2</sup> Center presents a step-by-step waklthrough of the process of converting seminars, symposium presentations,
lessons to use computational tools and other legacy content into learning modules. These modules are designed to be
self-paced and asynchronous, often requiring no instructor engangement. Open to all.
</p>
</div>
<!-- END CARD -->
<!-- START CARD -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300 transform hover:-translate-y-1">
<!-- icon; see https://fonts.google.com/icons for more options -->
<div class="flex items-center justify-center w-16 h-16 bg-orange-100 text-orange-600 rounded-full mb-6 mx-auto">
<span class="material-symbols-outlined">genetics</span>
</div>
<!-- title -->
<h3 class="text-xl font-semibold text-gray-900 mb-4 text-center">
miniDREAM Reimagined - COMING SOON
</h3>
<!-- description -->
<p class="text-gray-600 text-center">
miniDREAM was originally presented as a challenge to predict survival time for cohorts of breast cancer patients
from the METABRIC dataset. A series of self-paced guioded exercises will enable participants in this module to
make their own predictions based on coefficient of determination. Coding proficiency in R required. Open to all.
</p>
</div>
<!-- END CARD -->
<!-- START CARD -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300 transform hover:-translate-y-1">
<!-- icon; see https://fonts.google.com/icons for more options -->
<div class="flex items-center justify-center w-16 h-16 bg-pink-100 text-pink-600 rounded-full mb-6 mx-auto">
<span class="material-symbols-outlined">Handyman</span>
</div>
<!-- title -->
<h3 class="text-xl font-semibold text-gray-900 mb-4 text-center">
Introduction to the CCKP Toolkit - COMING SOON
</h3>
<!-- description -->
<p class="text-gray-600 text-center">
The MC<sup>2</sup> Center in collaboration with the Software Gardening Almanack presents an orientation to the
Cancer Complexity Knowledge Portal Tookit providing background and use cases. The Toolkit provides a summary of
the sustainability, documentation and useability for every tool (180 and growing!) hosted in the CCKP. This
integration enhances user decision-making regarding tool use and adoption and closes the feedback loop for
developers seeking to align with community standards.
</p>
</div>
<!-- END CARD -->
<!-- START CARD -->
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-lg transition duration-300 transform hover:-translate-y-1">
<!-- icon; see https://fonts.google.com/icons for more options -->
<div class="flex items-center justify-center w-16 h-16 bg-purple-100 text-purple-600 rounded-full mb-6 mx-auto">
<span class="material-symbols-outlined">medical_services</span>
</div>
<!-- title -->
<h3 class="text-xl font-semibold text-gray-900 mb-4 text-center">
Patient Advocacy in Cancer Research - COMING SOON
</h3>
<!-- description -->
<p class="text-gray-600 text-center">
Patient advocates embedded in the Cancer Systems Biology Consortium share their experiences as patients, role
in cancer research and their role in bridging research, clincal care and patient experience with cancer. The
content is organized into sections around key resources and guidance.
</p>
</div>
<!-- END CARD -->
<!-- You can duplicate the "START CARD" to "END CARD" to add more modules -->
</div>
<!-- The "See more" link -->
<p class="text-md mt-8 opacity-70 text-center">
<a
class="underline hover:text-blue-600"
href="https://sagebionetworks.moodlecloud.com/?redirect=0"
>
See more →
</a>
</p>
</div>
</section>
<!-- INSTRUCTORS SECTION -->
<section id="instructors" class="py-16 px-6 md:px-12 lg:px-24 bg-gray-100">
<div class="max-w-7xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold text-center mb-12 text-gray-800">Content Creation & Course Support</h2>
<!-- START INSTRUCTOR -->
<!-- photo -->
<img
class="rounded-full w-80 h-80 mx-auto mb-6"
src="static/angie_bowen.jpeg"
alt="Instructor: Angie Bowen">
<!-- name -->
<p class="text-xl md:text-2xl lg:text-3xl p-2">
Angie Bowen, PhD, MS, CLE
</p>
<!-- description -->
<p class="text-lg text-gray-700 leading-relaxed max-w-5xl mx-auto mt-4 mb-16">
Angie is an Education and Outreach specialist withing the MC<sup>2</sup> Center. She has extensive experience in course
development, WCAG guidelines and learner-centered design. She is available to support MC<sup>2</sup> Center consortia
members to develop online learning opportunities.
</p>
<!-- END INSTRUCTOR -->
<!-- You can duplicate the "START INSTRUCTOR" to "END INSTRUCTOR" to add more instructors -->
</div>
</section>
<!-- HOW TO START SECTION -->
<section id="next-steps" class="py-16 px-6 md:px-12 lg:px-24 bg-blue-900 text-white shadow-lg">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">How to Start?</h2>
<ol class="list-decimal list-inside text-left mb-8">
<li class="text-xl mb-4">
Create an account on the Sage Bionetworks <a class="underline hover:text-teal-200" href="https://sagebionetworks.moodlecloud.com/?redirect=0" target="_blank" rel="noopener noreferrer">Moodle</a> page.
</li>
<li class="text-xl mb-4">
Browse the available learning modules and select the ones that interest you.
</li>
<li class="text-xl mb-4">
Enroll in the modules and start your learning journey at your own pace.
</li>
<li class="text-xl mb-4">
Join our community discussions and connect with fellow learners and instructors.
</li>
</ol>
<a
class="inline-block bg-teal-500 text-2xl text-white font-bold py-6 px-18 rounded-full shadow-lg hover:bg-teal-600 hover:scale-105 transition duration-300 ease-in-out transform"
href="https://sagebionetworks.moodlecloud.com/?redirect=0"
target="_blank"
rel="noopener noreferrer"
>
Let's go!
</a>
</div>
</section>
<!-- FOOTER -->
<footer class="bg-blue-950 text-white py-8 px-6 md:px-12 lg:px-24 text-center">
<div class="max-w-7xl mx-auto">
<p class="text-sm">© 2025 MC<sup>2</sup> Center Cancer Complexity Education. All rights reserved.
Questions? We can help! mc2center@sagebase.org
</p>
</div>
</footer>
</body>
</html>