-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.57 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.57 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
<!doctype html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Polytwisters | Curved 4D shapes</title>
<link rel="icon" href="/favicon.png" type="image/png" />
<link
rel="preload"
href="/src/assets/fonts/material_icons.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link
rel="preload"
href="/src/assets/fonts/source-sans-3-v18-latin_latin-ext-700.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link
rel="preload"
href="/src/assets/fonts/source-sans-3-v18-latin_latin-ext-regular.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<meta
name="description"
content="Polytwisters are a family of 4D curved shapes related to polyhedra. Explore them in your browser."
/>
<meta name="og:title" content="Polytwisters | Curved 4D Shapes" />
<meta name="og:type" content="website" />
<meta name="og:image" content="https://polytwisters.com/preview_card.png" />
</head>
<body>
<noscript>
<article>
<h1>Polytwisters</h1>
<aside>
To view the polytwisters renderer,
<a href="https://www.enable-javascript.com/">enable JavaScript</a>.
The article that follows is available in the application.
</aside>
<include src="src/article.html" />
</article>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>