-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 1.16 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0" /> -->
<meta name="viewport" content="width=968" />
<meta
name="description"
content="Curated set of two-dimensional crystal structures computationally exfoliated from experimental 3D crystals."
/>
<title>Materials Cloud 2D crystals database</title>
<!-- Plausible analytics -->
<script type="text/javascript">
var header = document.getElementsByTagName("head")[0];
var plausible = document.createElement("script");
var domain_name = window.location.hostname;
var rollup_name = "plausible-rollup.materialscloud.org";
plausible.async = "";
plausible.defer = "";
plausible.dataset["domain"] = domain_name + "," + rollup_name;
plausible.src = "https://plausible.io/js/plausible.js";
header.appendChild(plausible);
</script>
<!-- end Plausible analytics -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>