-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (94 loc) · 4.65 KB
/
index.html
File metadata and controls
104 lines (94 loc) · 4.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OSSM Hub</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-black shadow-sm">
<div class="container">
<a class="navbar-brand fw-bold text-primary" href="#">OSSM</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#ecosystem">Ecosystem</a></li>
<li class="nav-item"><a class="nav-link" href="#contribute">Contribute</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="bg-primary text-white text-center py-5">
<div class="container">
<h1 class="display-4 fw-bold">Open Standards for Sensorimotor Modeling (OSSM)</h1>
<p class="lead">An open, community-driven ecosystem for the neuroscience of action</p>
</div>
</header>
<!-- About -->
<section id="about" class="py-5 bg-white text-black">
<div class="container">
<p>OSSM (pronounced /ˈɔː.səm/) is a community-driven workspace dedicated to developing and maintaining Open Standards for Sensorimotor Modeling. Our goal is to make goal-driven sensorimotor models, tasks, and analyses interoperable, reusable, and FAIR from the start. By building shared tools, clear standards, and open repositories, we empower researchers to contribute, compare, and advance computational sensorimotor neuroscience together. Whether you’re designing new models, benchmarking tasks, or improving analysis pipelines — your contributions help keep OSSM truly awesome.</p>
</div>
</section>
<!-- Ecosystem -->
<section id="ecosystem" class="py-5 bg-light text-black">
<div class="container">
<h2 class="mb-4 text-primary text-center">The Ecosystem</h2>
<div class="row g-4">
<div class="col-md-4">
<a href="https://github.com/ossm-team/ossm-models" class="text-decoration-none text-black">
<div class="card h-100 shadow-sm border-0">
<div class="card-body">
<h5 class="card-title text-primary">Model Standards</h5>
<p class="card-text">Build and reuse sensorimotor brain models under a shared standard.</p>
</div>
</div>
</a>
</div>
<div class="col-md-4">
<a href="https://github.com/ossm-team/ossm-tasks" class="text-decoration-none text-black">
<div class="card h-100 shadow-sm border-0">
<div class="card-body">
<h5 class="card-title text-primary">Task Standards</h5>
<p class="card-text">Build and reuse tasks in a standardized formats.</p>
</div>
</div>
</a>
</div>
<div class="col-md-4">
<a href="https://github.com/ossm-team/ossm-lab" class="text-decoration-none text-black">
<div class="card h-100 shadow-sm border-0">
<div class="card-body">
<h5 class="card-title text-primary">Analysis Lab</h5>
<p class="card-text">Evaluate models using standard metrics for representation, transformation, and dynamics.</p>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- Contribute -->
<section id="contribute" class="py-5 bg-white text-black text-center">
<div class="container">
<h2 class="mb-4">Contribute to the Ecosystem</h2>
<p class="mb-4">We welcome community participation! Contribute models, tasks, analysis tools, or join our discussions on GitHub.</p>
<a href="https://github.com/ossm-team" class="btn btn-outline-primary btn-lg">Join on GitHub</a>
</div>
</section>
<!-- Footer -->
<footer class="bg-black text-white text-center py-3">
<div class="container">
<small>© 2025 OSSM Team – Maastricht University</small>
</div>
</footer>
<script src="js/bootstrap.bundle.min.js"></script>
</body>
</html>