-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (79 loc) · 2.76 KB
/
index.html
File metadata and controls
88 lines (79 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>fastplotlib for neuroscience</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="page">
<main>
<nav class="nav">
<a href="index.html">Home</a>
<a href="https://github.com/fastplotlib/fastplotlib" target="_blank"
>GitHub</a
>
<a href="https://www.fastplotlib.org/ver/dev/" target="_blank"
>Documentation</a
>
<a href="index.html">Paper</a>
<a href="people.html">People</a>
<a href="sponsors.html">Sponsors</a>
</nav>
<header class="title">
<h1>fastplotlib for neuroscience</h1>
</header>
<div class="grid">
<a href="ephys.html" class="grid-link">
<div class="grid-item">
<img src="images/fpl.jpg" alt="ephys" />
<div class="overlay">Description for Image 1</div>
</div>
</a>
<a href="ophys.html" class="grid-link">
<div class="grid-item">
<img src="images/fpl.jpg" alt="ophys" />
<div class="overlay">Description for Image 2</div>
</div>
</a>
<a href="tracker.html" class="grid-link">
<div class="grid-item">
<img src="images/fpl.jpg" alt="tracking" />
<div class="overlay">Description for Image 3</div>
</div>
</a>
<a href="pathology.html" class="grid-link">
<div class="grid-item">
<img src="images/fpl.jpg" alt="pathology" />
<div class="overlay">Description for Image 4</div>
</div>
</a>
</div>
<p class="quad-text">
fastplotlib is an open source Python-based library for GPU-accerated
scientific visualization. <br /><br />
This next-generation plotting library is built using the
<a href="https://github.com/pygfx/pygfx" target="_blank">pygfx</a>
rendering engine. <br /><br />
This website is a companion to the following paper:
<br /><br />
The examples above highlight how fastplotlib can be used for
neuroscience.
</p>
</main>
<footer class="footer">
<p>
© <span id="year"></span> Caitlin Lewis and Kushal Kolar. All
rights reserved. Cite design inspired by
<a
href="https://research.janelia.org/zebrafish/index.html"
target="_blank"
>Janelia</a
>.
</p>
<img src="images/logo_face.png" alt="Footer logo" class="footer-logo" />
</footer>
</div>
<script src="script.js"></script>
</body>
</html>