-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (29 loc) · 1.23 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>
<head>
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- NOTE, good sir, this is actually not in-use, but just for reference. -->
<!-- The Webpack HtmlWebpackPlugin takes care of generating the index.html file. -->
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<title>Three.js Clock</title>
<meta name="description" content="Demo - Simple Three.js Clock" />
<meta property="og:title" content="Demo - Simple Three.js Clock" />
<meta property="og:description" content="This is just a demo showcasing a simple 3D clock made using Three.js." />
<meta property="og:type" content="video.other">
<meta property="og:image" content="https://townofdon.github.io/three-js-clock/demo.gif" />
<meta property="og:url" content="https://townofdon.github.io/three-js-clock/" />
<meta name="twitter:title" content="Demo - Simple Three.js Clock" />
<meta name="twitter:description" content="This is just a demo showcasing a simple 3D clock made using Three.js." />
<meta name="twitter:image" content="https://townofdon.github.io/three-js-clock/demo.gif" />
<meta name="twitter:card" content="summary_large_image" />
</head>
<body>
<script src="/dist/index.bundle.js"></script>
</body>
</html>