-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
33 lines (29 loc) · 1.3 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>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0">
<title>EscherSketch</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="apple-mobile-web-app-title" content="Eschersketch">
<meta name="application-name" content="Eschersketch">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" type="text/css" href="/static/icomoon.css">
<script type="text/javascript" src="/static/version_info.js"></script>
</head>
<body>
<!-- Main Canvas -->
<div id="sketch-container">
<!-- where scene is rendering -->
<canvas id="sketchrender" width="1600" height="1200" style="z-index:0"></canvas>
<!-- canvas for interactive elements / live rendering -->
<canvas id="sketchlive" width="1600" height="1200" style="z-index:1"></canvas>
</div>
<!-- Main UI -->
<div id="topUI"></div>
</body>
</html>