-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (95 loc) · 3.57 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
---
---
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style/main.css">
<title>Vivarium Collective</title>
<link rel="icon" type="image/svg" href="vlogo.svg"/>
<link rel="icon" type="image/png" href="vlogo.png"/>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="/vlogo.svg"
alt="" width="35" height="35">
Vivarium Collective
</a>
<button class="navbar-toggler" type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
{% for page in site.data.navigation %}
<li class="nav-item">
<a class="nav-link active"
href="{{ page.link }}">{{ page.name }}</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</nav>
<main class="container mt-4">
<h1>Welcome to the Vivarium Collective</h1>
<!-- <div class="alert alert-danger" role="alert">-->
<!-- <p>-->
<!-- <b>WARNING:</b> This website is under construction.-->
<!-- </p>-->
<!-- </div>-->
<p>
The Vivarium Collective is a registry for open-source Vivarium-compatible simulation modules. These
can be wired together to generate novel multi-scale simulations, with the most appropriate
algorithm for each biological mechanism.
</p>
<h2>Featured Projects</h2>
<!-- <div class="alert alert-primary" role="alert">-->
<!-- <p>-->
<!-- These projects may not be affiliated with the team that-->
<!-- develops Vivarium Core, and the descriptions below have not-->
<!-- been verified by the Vivarium Core Authors.-->
<!-- </p>-->
<!-- </div>-->
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 g-4">
{% for card in site.data.cards %}
<div class="col">
<div class="card">
{% if card.header %}
<h5 class="card-header">{{ card.header }}</h5>
{% endif %}
<img src="assets/card-imgs/{{ card.image }}" class="card-img-top" alt="">
<div class="card-body">
<h5 class="card-title">{{ card.name }}</h5>
<p class="card-text">
{{ card.text }}
</p>
{% for button in card.buttons %}
<a
href="{{ button.link }}"
class="btn btn-primary"
>{{ button.text }}</a>
{% endfor %}
</div>
</div>
</div>
{% endfor %}
</div>
</main>
<footer class="footer">
<div class="container">
<span class="text-muted">
© Copyright 2021 The Vivarium Authors.
</span>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
</body>
</html>