-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
574 lines (558 loc) · 32.7 KB
/
index.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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>MoSDeF</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/main.css">
<meta name="theme-color" content="#fafafa">
<!-- Google Analytics -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-181290361-1', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
</head>
<body>
<header>
<nav>
<div class="nav-wrapper grey darken-4">
<div class="container">
<a href="index.html" class="brand-logo hide-on-med-and-down" id="brandLogo"><img
width="110px" height="110px"
style="position: relative; z-index: 100"
class="responsive-img" src="images/logo.png" alt="MoSDeF"></a>
<a href="#" data-target="mobile-page" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul class="right hide-on-med-and-down">
<li><a href="index.html">Home</a></li>
<li><a href="./pages/publications.html">Publications</a></li>
<li><a href="./pages/recipes.html">Recipes</a></li>
<li><a href="./pages/force_fields.html">Force Fields</a></li>
<li><a href="./pages/announcements.html">Announcements</a></li>
<li><a href="./pages/about.html">About</a></li>
<li><a href="./pages/cite.html">Cite</a></li>
</ul>
</div>
</div>
</nav>
<ul class="sidenav sidenav-background" id="mobile-page">
<li><a href="index.html" class="brand-logo" id="brandLogo2"><img
style="height: 80%"
class="responsive-img" src="images/logo.png" alt="MoSDeF"></a></li>
<li><a class="white-text" href="./index.html"> <i
class="material-icons white-text small left">home</i> Home</a></li>
<li>
<div class="divider"></div>
<li><a class="white-text" href="./pages/publications.html"> <i
class="material-icons white-text small left">book</i> Publications</a></li>
<li>
<div class="divider"></div>
</li>
<li><a href="./recipes.html"><i class="material-icons white-text small left">view quilt</i>Recipes</a></li>
<li><a href="./force_fields.html"><i class="material-icons white-text small left">note</i>Force Fields</a></li>
<li><a class="white-text" href="./pages/announcements.html"><i
class="material-icons white-text small left">announcement</i> Announcements</a></li>
<li>
<div class="divider"></div>
</li>
<li><a class="white-text" href="./pages/about.html"> <i
class="material-icons small white-text left">people_alt</i> About</a></li>
<li>
<div class="divider"></div>
</li>
<li><a class="white-text" href="./pages/cite.html"> <i class="material-icons small white-text left">link</i>Cite</a>
</li>
<li>
<div class="divider"></div>
</li>
<li><a class="white-text" id="close-sidenav" class="sidenav-close" href="#!"><i
class="material-icons small red-text left">close</i>Close</a></li>
</ul>
</header>
<main id="main" style="position: relative;">
<div class="section no-pad-bot banner-background">
<div class="row center">
<h3 class="white-text"> Molecular Simulation Design Framework (MoSDeF)</h3>
<p class="subtitle white-text">
MoSDeF presents a set of extensible Python tools designed to facilitate the initialization,
<br> atom-typing, and screening of soft matter systems using molecular simulation.
</p>
<div class="row center">
<a id="get-started-btn" class="btn-large waves-effect waves-light orange darken-1">Get
Started!</a>
</div>
</div>
</div>
<div class="container">
<div class="section">
<div class="row">
<h7 class="black-text">
The MoSDeF tools have been designed to facilitate the hierarchical construction of both atomistic
and coarse-grained system configurations, the application of classical force fields (i.e.,
atom-typing),
encapsulation of chemical topology information, and the generation of input files for a variety of
molecular dynamics and Monte Carlo simulation engines, including LAMMPS, GROMACS, HOOMD-Blue,
Cassandra, and GOMC.
</h7>
</div>
<div class="row center">
<div class="col s12 l8">
<div id="slides-container" class="hide-on-med-and-down">
<div id="mosdefSlides" class="carousel carousel-slider" data-indicators="true">
<a href="#one!" class="carousel-item"><img src="images/slides/0001.jpg"></a>
<a href="#two!" class="carousel-item"><img src="images/slides/0002.jpg"></a>
<a href="#three!" class="carousel-item"><img src="images/slides/0003.jpg"></a>
<a href="#four!" class="carousel-item"><img src="images/slides/0004.jpg"></a>
<a href="#five!" class="carousel-item"><img src="images/slides/0005.jpg"></a>
<a href="#six!" class="carousel-item"><img src="images/slides/0006.jpg"></a>
<a href="#seven!" class="carousel-item"><img src="images/slides/0007.jpg"></a>
<a href="#!eight" class="carousel-item"><img src="images/slides/0008.jpg"></a>
<a href="#nine!" class="carousel-item"><img src="images/slides/0009.jpg"></a>
</div>
</div>
</div>
<div class="col s12 l4">
<img src="./images/slideshow.png" style="max-width: 100%;margin-top: 10%"
alt="mosdef-slideshow"/>
</div>
</div>
</div>
<div class="divider"></div>
<div class="section">
<div class="row" style="text-align: justify;">
<div class="col s12 l4">
<h4>TRUE Simulations</h4>
<p class="text-justify">
Through the MoSDeF integrated framework, the exact procedures used to set up and perform
simulation workflows and associated metadata (i.e. the provenance) can be scripted,
encapsulated, version-controlled, preserved, and later reproduced by other researchers. This
allows molecular simulation studies to be conducted and published in a manner that is <b>TRUE
</b>: “<b>Transparent</b>, <b>Reproducible</b>, <b>Usable by others</b>, and <b>Extensible
</b>.” The following <a
href="https://www.tandfonline.com/doi/full/10.1080/00268976.2020.1742938"
target="_blank">paper</a> highlights these principles in details.
</p>
<div class="center-align">
<img style="max-width: 100%" src="images/TRUESIMS.png" alt="True Simulations"/>
</div>
</div>
<div class="col s12 l4">
<h4>Flexibility</h4>
<p class="text-justify">
System construction and initialization are performed in a simulation engine agnostic fashion,
allowing users to use a single set of scripts to generate inputs for a variety of different
simulation engines.
<br>
Because systems are constructed in a hierarchical, scriptable fashion, modifications to system
chemistry can be easily made, allowing for screening over chemical space.
</p>
<div class="hide-on-med-and-down">
<br>
</div>
<div class="center-align">
<img style="max-width: 100%;" src="images/flexibility.png"
alt="Flexibility"/>
</div>
</div>
<div class="col s12 l4">
<h4>Community</h4>
<p class="text-justify">
MoSDeF is designed to allow system construction scripts to be easily made into easy to
distribute libraries; similarly, forcefield files contain parameters and their usage rules that
can be easily shared and version controlled.
</p>
<a href="https://groups.google.com/g/mosdef-users"
target="_blank"><h6>Join the mailing list</h6></a>
<a href="https://gitter.im/mosdef-hub/Lobby" target="_blank"><h6>Mosdef Gitter </h6></a>
<a href="https://github.com/mosdef-hub" target="_blank"><h6>Github Organization</h6></a>
<div class="hide-on-med-and-down">
<br>
</div>
<div class="center-align">
<img src="images/community.png" style="max-width: 100%" alt="community"/>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<div class="section">
<div class="row">
<div class="col l6 m12 s12">
<h4 id="ecoSystem" class="col s12 light header center">Quick Start</h4>
<h7 class="black-text">
The easiest way to get started with <b>MoSDeF</b> is to go through our tutorials. Below is a
curated list of quick start guides:
</h7>
<table class="striped">
<thead>
<tr>
<th>Details</th>
<th style="text-align: center">GitHub</th>
<th style="text-align: center">Binder</th>
</tr>
</thead>
<tbody>
<tr>
<td><b>MosDeF Tutorials</b>: Curated tutorials for the MosDeF Framework</td>
<td style="text-align: center"><a class="black-text"
href="https://github.com/mosdef-hub/mosdef_tutorials"
target="_blank">
<i class="fa fa-github fa-2x"></i></a></td>
<td style="text-align: center"><a target="_blank"
href="https://mybinder.org/v2/gh/mosdef-hub/mbuild_tutorials/master"
rel="nofollow">
<img src="https://mybinder.org/badge.svg"
alt="Binder" data-canonical-src="https://mybinder.org/badge.svg"
style="max-width: 100%;"></a></td>
</tr>
<tr>
<td><b>mBuild Tutorials</b>: Curated tutorials for mBuild</td>
<td style="text-align: center"><a class="black-text"
href="https://github.com/mosdef-hub/mbuild_tutorials"
target="_blank">
<i class="fa fa-github fa-2x"></i></a></td>
<td style="text-align: center"><a target="_blank"
href="https://mybinder.org/v2/gh/mosdef-hub/mbuild_tutorials/master"
rel="nofollow">
<img src="https://mybinder.org/badge.svg"
alt="Binder" data-canonical-src="https://mybinder.org/badge.svg"
style="max-width: 100%;"></a></td>
</tr>
<tr>
<td><b>Foyer Tutorials</b>: Curated tutorials for Foyer</td>
<td style="text-align: center"><a class="black-text"
href="https://github.com/mosdef-hub/foyer_tutorials"
target="_blank"><i
class="fa fa-github fa-2x"></i></a></td>
<td style="text-align: center"><a target="_blank"
href="https://mybinder.org/v2/gh/mosdef-hub/foyer_tutorials/master"
rel="nofollow">
<img src="https://mybinder.org/badge.svg"
alt="Binder" data-canonical-src="https://mybinder.org/badge.svg"
style="max-width: 100%;"></a></td>
</tr>
</tbody>
</table>
</div>
<div class="col l5 m12 s12 offset-l1 left-align">
<h4 class="col s12 light header center">Quick Peek</h4>
<div>
<img class="responsive-img" src="images/mosdef-glance.png"/>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<div class="section">
<div class="row center">
<h4 class="col s12 light header center">Foundational MoSDeF Repositories</h4>
</div>
<div class="row">
<div class="col s12 l4">
<div class="card small banner-background">
<div class="card-content white-text">
<div class="card-title">mBuild</div>
<p>A hierarchical, component based molecule builder</p>
<span style="position: absolute; top: 2%; right: 2%; border: 2%;"
class="circle black valign-wrapper"><i
class="material-icons lime-text accent-3">star</i></span>
<a style="margin-right:15%" class="btn-floating halfway-fab waves-effect waves-light black"
href=https://mbuild.mosdef.org target="_blank"><i
class="material-icons">more</i></a>
<a class="btn-floating halfway-fab waves-effect waves-light black"
href=https://github.com/mosdef-hub/mbuild target="_blank"><i
class="fa fa-github"></i></a>
</div>
</div>
</div>
<div class="col s12 l4">
<div class="card small banner-background">
<div class="card-content white-text">
<div class="card-title">Foyer</div>
<p>A package for atom-typing as well as applying and disseminating forcefields</p>
<span style="position: absolute; top: 2%; right: 2%; border: 2%;"
class="circle black valign-wrapper"><i
class="material-icons lime-text accent-3">star</i></span>
<a style="margin-right:15%" class="btn-floating halfway-fab waves-effect waves-light black"
href=https://foyer.mosdef.org target="_blank"><i
class="material-icons">more</i></a>
<a class="btn-floating halfway-fab waves-effect waves-light black"
href=https://github.com/mosdef-hub/foyer target="_blank"><i class="fa fa-github"></i></a>
</div>
</div>
</div>
<div class="col s12 l4">
<div class="card small banner-background">
<div class="card-content white-text">
<div class="card-title">GMSO</div>
<p>Flexible storage of chemical topology for molecular simulation</p>
<span style="position: absolute; top: 2%; right: 2%; border: 2%;"
class="circle black valign-wrapper"><i
class="material-icons lime-text accent-3">star</i></span>
<a style="margin-right:15%" class="btn-floating halfway-fab waves-effect waves-light black"
href=https://gmso.mosdef.org target="_blank"><i
class="material-icons">more</i></a>
<a class="btn-floating halfway-fab waves-effect waves-light black"
href=https://github.com/mosdef-hub/gmso target="_blank"><i class="fa fa-github"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<div class="section">
<div class="row" style="text-align: justify;">
<div class="col s12 l6">
<h5>Other MoSDeF Projects</h5>
<div class="collection">
<div class="collection-item"><a href="https://github.com/mosdef-hub/forcefield_template"
target="_blank"><b>Forcefield Template</b></a>: A template repo
for disseminating force
fields with foyer
</div>
<div class="collection-item"><a href="https://github.com/mosdef-hub/nanoparticle_optimization"
target="_blank"><b>Nanoparticle Optimization</b></a>: Deriving
potentials for
coarse-grained nanoparticles via potential-matching
</div>
<div class="collection-item"><a href="https://github.com/mosdef-hub/msibi"
target="_blank"><b>MultiState Boltzmann Inversion
(MS-IBI)</b></a>: Manage and run pair
potential optimizations using multistate iterative Boltzmann inversion
</div>
<div class="collection-item"><a href="https://github.com/mosdef-hub/mosdef_tutorials"
target="_blank"><b>MoSDeF Tutorials</b></a>: A set of tutorials
to introduce new users to the MoSDeF (Molecular Simulation Design Framework) toolkit
</div>
<div class="collection-item"><a href="https://github.com/mosdef-hub/mbuild_tutorials"
target="_blank"><b>mBuild Tutorials</b></a>: A set of tutorials
to introduce new users to
mBuild
</div>
<div class="collection-item"><a href="https://github.com/mosdef-hub/foyer_tutorials"
target="_blank"><b>foyer Tutorials</b></a>: A set of tutorials
to introduce new users to
foyer
</div>
</div>
</div>
<div class="col s12 l6">
<h5>Projects Using MoSDeF</h5>
<div class="collection">
<div class="collection-item"><a href="https://github.com/MaginnGroup/mosdef_cassandra"
target="_blank"><b>MoSDeF
Cassandra</b></a>:
MoSDeF compatible wrapper for Cassandra Monte Carlo code
</div>
<div class="collection-item"><a href="https://github.com/GOMC-WSU/MoSDeF-GOMC"
target="_blank"><b>MoSDeF GOMC</b></a>:
MoSDeF compatible wrapper for GPU Optimized Monte Carlo (GOMC) code
</div>
<div class="collection-item"><a href="https://github.com/cmelab/planckton" target="_blank"><b>
planckton</b></a>: Reproducible
exploration of organic photovoltaic morphology self-assembly using molecular dynamics.
</div>
<div class="collection-item">
<a href="https://github.com/colinebunner/MoSDeF-CP2K-Writer"
target="_blank"><b>MosDeF-CP2K-Writer</b></a>: Scripted control and better documentation
of CP2K simulations in accord with the goals of the CSSI MoSDeF project
</div>
<div class="collection-item"><a href="https://github.com/mosdef-hub/gmso_showcase"
target="_blank"><b>GMSO Showcase</b></a>: Interactive
demo/tutorial of current GMSO features
and design decisions.
</div>
<div class="collection-item"><a href="https://github.com/cmelab/grits"
target="_blank"><b>GRiTS</b></a>: GRiTS Reduces/Restores
Topology with SMILES
</div>
<div class="collection-item"><a href="https://github.com/mosdef-hub/mosdef-workflows"
target="_blank"><b>MoSDeF Workflows</b></a>: Sample molecular
simulation workflows using
MoSDeF
</div>
</div>
</div>
</div>
<p class="black-text">Also, checkout projects from our collaborators:
<a href="https://github.com/cmelab" target="_blank">Boise State</a> |
<a href="https://github.com/glotzerlab" target="_blank">Michigan</a> |
<a href="https://github.com/MaginnGroup" target="_blank">Notre Dame</a> |
<a href="https://github.com/GOMC-WSU" target="_blank">Wayne State</a>.
</p>
</div>
<div class="divider"></div>
<div class="section">
<div class="row center">
<h4 class="col s12 light header center">Collaborators</h4>
</div>
<div class="row center">
<p class="flow-text"><br/> MoSDeF is supported by a Cyberinfrastructure for Sustained Scientific
Innovation (CSSI) grant funded by the National Science Foundation Office of Advanced
Cyberinfrastructure.</p>
</div>
<div id="colabUniversities" class="row center carousel">
<div class="card carousel-item hoverable colab-universities col s8 m4 l3 center">
<div id= "HWimg" class="row center img">
<a href="https://www.hw.ac.uk/" alt="Heriot-Watt University" target="_blank">
<img src="images/Heriot-Watt-Logo.png" alt="HW" style="width:120px;height:100px;margin-top:40px;margin-bottom:15px">
</a>
</div>
<div class="card-content">
<a href="https://petercummings.org/" target="_blank">Peter T.
Cummings</a>
</div>
</div>
<div class="card carousel-item hoverable colab-universities col s8 m4 l3 center">
<div id= "HWimg" class="row center img">
<a href="https://www.hw.ac.uk/" alt="Heriot-Watt University" target="_blank">
<img src="images/Heriot-Watt-Logo.png" alt="HW" style="width:120px;height:100px;margin-top:40px;margin-bottom:15px">
</a>
</div>
<div class="card-content">
<a href="https://lab.vanderbilt.edu/mccabegroup/" target="_blank">Clare
M<sup>c</sup>Cabe</a>
</div>
</div>
<div class="card carousel-item hoverable colab-universities col s8 m4 l3 center">
<a href="https://vanderbilt.edu/" alt="Vanderbilt University" target="_blank">
<img src="images/Vanderbilt_University_logo.svg" alt="Vandy">
</a>
<div class="card-content">
<a href="https://engineering.vanderbilt.edu/bio/akos-ledeczi" target="_blank">Akos
Ledeczi</a>
</div>
</div>
<div class="card carousel-item colab-universities col s8 m4 l3 center">
<a href="https://boisestate.edu/" alt="Boise State University" target="_blank">
<img src="images/Boise_State_University_logo.svg" alt="boise">
</a>
<div class="card-content">
<a href="https://www.boisestate.edu/coen-materials/faculty-and-staff/eric-jankowski-ph-d/"
target="_blank">Eric Jankowski</a>
</div>
</div>
<div class="card carousel-item colab-universities col s8 m4 l3 center">
<a href="https://udel.edu/" alt="University of Delaware" target="_blank">
<img src="images/University_of_Delaware_wordmark.svg" alt="delaware">
</a>
<div class="card-content">
<a href="https://cbe.udel.edu/people/faculty/arthij/" target="_blank">Arthi Jayaraman</a>
</div>
</div>
<div class="card carousel-item colab-universities col s8 m4 l3 center">
<a href="https://umich.edu/" alt="University of Michigan" target="_blank">
<img src="images/University_of_Michigan_logo.svg" alt="michigan">
</a>
<div class="card-content">
<a href="https://che.engin.umich.edu/people/sharon-glotzer/" target="_blank">Sharon
C. Glotzer</a>
</div>
</div>
<div class="card carousel-item colab-universities col s8 m4 l3 center">
<a href="https://umn.edu/" alt="University of Minessota" target="_blank">
<img src="images/University_of_Minnesota.svg" alt="minessota">
</a>
<div class="card-content">
<a href="http://siepmann.chem.umn.edu/people/research-director" target="_blank">Joern
Ilja. Siepmann</a>
</div>
</div>
<div class="card carousel-item colab-universities col s8 m3 l3 center">
<a href="https://nd.edu/" alt="University of Notre Dame" target="_blank">
<img src="images/University_of_Notre_Dame_logo.svg" alt="notredame">
</a>
<div class="card-content">
<a href="https://engineering.nd.edu/profiles/emaginn" target="_blank">Edward J.
Maginn</a>
</div>
</div>
<div class="card carousel-item colab-universities col s8 m3 l3 center">
<a href="https://wayne.edu/" alt="Wayne State University" target="_blank">
<img src="images/Wayne_State_University_logo.svg" alt="wayne">
</a>
<div class="card-content">
<a href="https://engineering.wayne.edu/profile/ai8111" target="_blank">Jeffrey J.
Potoff</a>
</div>
</div>
</div>
<div class="divider"></div>
<div class="section">
<h4 class="col s12 light header center">Get Involved</h4>
<br>
<div class="row center">
<div class="col s12 m4">
<div class="center promo">
<i class="material-icons large">question_answer</i>
<p class="feature-title">Chat</p>
<p class="caption">
Having issues with any of the packages or want to contribute to the project? Join us on
gitter.</p>
<a class="btn waves-effect waves-light banner-background"
href="https://gitter.im/mosdef-hub/Lobby"
target="_blank">Chat</a>
</div>
</div>
<div class="col s12 m4">
<div class="center promo">
<i class="material-icons large">announcement</i>
<p class="feature-title">Check out our recent news</p>
<p class="caption">
We are constantly making new releases. Please check here for release announcements.
</p>
<a class="btn waves-effect waves-light banner-background"
href="pages/announcements.html">Announcements</a>
</div>
</div>
<div class="col s12 m4">
<div class="center promo">
<i class="material-icons large">code</i>
<p class="feature-title">Contribute</p>
<p class="caption">
Contributions are welcome! Just fork any of the projects and submit some pull requests
or
develop your own custom extensions.
</p>
<a class="btn waves-effect waves-light banner-background"
href="https://github.com/mosdef-hub"
target="_blank">Contribute</a>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="page-footer grey darken-4">
<div class="footer-copyright">
<div class="container">
<span>© 2019 mosdef-hub / <a href="https://my.vanderbilt.edu/mums/" target="_blank">Vanderbilt University</a></span>
<a class="grey-text text-lighten-4 right" href="/LICENSE.txt" target="_blank">MIT License</a>
</div>
</div>
</footer>
<script src="js/vendor/modernizr-3.7.1.min.js"></script>
<script
src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>