-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
99 lines (88 loc) · 4.6 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>Polygone Art - Free 3D Assets</title>
<meta name="description" content="This is an archive of free CC-BY-licensed 3D assets salvaged from poly.google.com before the shut down on June 30th 2021." />
<meta name="keywords" content="Google Poly, 3D Models, Tilt Brush, Download, Assets, Free, Creative Commons, CC-BY, gltf, obj, fbx" />
<meta itemprop="name" content="This is an archive of free CC-BY-licensed 3D assets" />
<meta itemprop="description" content="This is an archive of free CC-BY-licensed 3D assets salvaged from poly.google.com before the shut down on June 30th 2021." />
<!-- Web application enable -->
<link rel="manifest" href="/manifest.json" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- Web application name -->
<meta name="application-name" content="This is an archive of free CC-BY-licensed 3D assets" />
<meta name="apple-mobile-web-app-title" content="This is an archive of free CC-BY-licensed 3D assets" />
<!-- Browser UI color -->
<meta name="theme-color" content="#f5f5f5" />
<meta name="msapplication-TileColor" content="#f5f5f5" />
<meta name="apple-mobile-web-app-status-bar-style" content="#f5f5f5" />
<!-- Home screen icons -->
<link rel="shortcut icon" href="./favicon.ico" />
<meta itemprop="image" content="./images/polygone-512.png" />
<meta name="msapplication-TileImage" content="./images/polygone-144-precomposed.png" />
<link rel="apple-touch-icon" sizes="144x144" href="./images/polygone-144.png">
<link rel="apple-touch-icon" sizes="152x152" href="./images/polygone-152.png">
<!-- Other icons -->
<link rel="icon" type="image/png" href="./images/polygone-512.png" />
<link rel="icon" type="image/png" sizes="192x192" href="./images/polygone-192.png" />
<link rel="icon" type="image/png" sizes="96x96" href="./images/polygone-96.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/polygone-32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./images/polygone-16.png" />
<link rel="apple-touch-icon" href="./images/polygone-152.png" />
<link rel="apple-touch-icon" sizes="72x72" href="./images/polygone-72.png">
<!-- Social sharing data -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Polygone Art - Free 3D Assets" />
<meta name="twitter:description" content="This is an archive of free CC-BY-licensed 3D assets salvaged from poly.google.com before the shut down on June 30th 2021." />
<meta name="twitter:site" content="polygone.art" />
<meta name="twitter:creator" content="akirodic" />
<meta name="twitter:image" content="https://polygone.art/images/polygone-512.png">
<meta name="twitter:image:alt" content="Polygone Art">
<meta property="og:type" content="article" />
<meta property="og:title" content="Polygone Art - Free 3D Assets" />
<meta property="og:description" content="This is an archive of free CC-BY-licensed 3D assets salvaged from poly.google.com before the shut down on June 30th 2021." />
<meta property="og:image" content="https://polygone.art/images/polygone-512.png" />
<meta property="og:locale" content="en_US" />
<!-- Import maps polyfill -->
<!-- Remove this when import maps will be widely supported -->
<script async src="https://unpkg.com/es-module-shims@1.6.0/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"io-gui": "./node_modules/io-gui/build/iogui.js",
"marked": "./node_modules/io-gui/node_modules/marked/lib/marked.esm.js",
"dompurify": "./node_modules/io-gui/node_modules/dompurify/dist/purify.es.js"
}
}
</script>
<style>
html {
font: 16px 'Open Sans', Helvetica, Arial, sans-serif;
width: 100%;
height: 100%;
}
body {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
poly-app {
height: 100%;
}
#button-load,
#default-poster {
background-size: cover !important;
}
</style>
</head>
<body>
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
<script type="module" src="./build/poly-app.js"></script>
<noscript>JavaScript is required to view this page!</noscript>
<poly-app></poly-app>
</body>
</html>