@explorable-viz/fluid 0.7.99 → 0.7.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/website/article/css/styles.css +357 -0
- package/website/article/css/view-styles.css +190 -0
- package/website/article/font/GraphikLight.woff2 +0 -0
- package/website/article/font/GraphikLightItalic.woff2 +0 -0
- package/website/article/font/GraphikMedium.woff2 +0 -0
- package/website/article/font/GraphikMediumItalic.woff2 +0 -0
- package/website/article/font/OdiseanTech.woff2 +0 -0
- package/website/article/shared/fluid.mjs +27078 -0
- package/website/article/shared/footer.html +6 -0
- package/website/article/shared/header.html +27 -0
- package/website/article/shared/load-figure.js +45292 -0
- package/website/article/shared/sub-header.html +12 -0
- package/website/article/shared/util.js +72 -0
- package/website/article/shared/website-test.js +41 -0
- package/website/article/shared/webtest-lib.js +278837 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
<div class="header-grid-container">
|
2
|
+
<div class="flex-right-align right-border">
|
3
|
+
<img class="fluid-logo" src="/image/fluid-logo.png" width="150px">
|
4
|
+
<h2 class="fluid-subtitle">explorable, self-explanatory research outputs</h2>
|
5
|
+
</div>
|
6
|
+
<div class="flex-left-align" style="justify-content: center; margin-left: 5px;">
|
7
|
+
<nav>
|
8
|
+
<ul>
|
9
|
+
<li><a href="https://github.com/explorable-viz/fluid">GitHub</a></li>
|
10
|
+
<li><a href="https://dl.acm.org/doi/10.1145/3498668">POPL 2022 paper</a></li>
|
11
|
+
<li><a href="https://www.youtube.com/watch?v=M_ePrtD9axk">POPL 2022 talk</a></li>
|
12
|
+
<li><a href="https://www.youtube.com/watch?v=2-S6yVyzypU">PROPL 2024</a></li>
|
13
|
+
<li><a href="https://www.youtube.com/watch?v=F3JaftEnFfM">ICCS Summer School</a></li>
|
14
|
+
<li><a href="https://arxiv.org/abs/2403.04403">ESOP 2025 preprint</a></li>
|
15
|
+
</ul>
|
16
|
+
</nav>
|
17
|
+
<nav>
|
18
|
+
<ul>
|
19
|
+
<li><a href="/">Overview</a></li>
|
20
|
+
<li><a href="/faq">FAQ</a></li>
|
21
|
+
<li><a href="/contributors">Contributors & Funding</a></li>
|
22
|
+
<li><a href="/student-projects">Student Projects</a></li>
|
23
|
+
</ul>
|
24
|
+
</nav>
|
25
|
+
<div></div>
|
26
|
+
</div>
|
27
|
+
</div>
|