Files
cadhub/web/src/index.html
Kurt Hutten 7d262e9f58 Add Privacy Policy related improvements
various thing to make sure we're GDPR, et al compliant
2020-12-28 14:29:30 +11:00

36 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="cadhub, app, application, web application, cad, code, code-cad, cad-modeling, community, website, cascade studio, openscad" />
<meta property="og:type" content="website" />
<meta name="robots" content="index, follow" />
<title><%= htmlWebpackPlugin.options.title %></title>
<script>
// Install Cascade Studio as a Progressive Web App for Offline Access
// This needs to be put before ANY HTTP Requests are made, so it can cache them.
var messageHandlers = {};
var threejsViewport = {};
messageHandlers["resetWorking"] = () => { workerWorking = false; }
var cascadeStudioWorker
var workerWorking = false
var galleryProject = undefined
var myLayout, monacoEditor,
consoleContainer, consoleGolden, codeContainer, gui,
guiPanel, GUIState, count = 0, //focused = true,
mainProject = false,
// messageHandlers = {},
startup,
isInitialized = false;
</script>
</head>
<body>
<div id="redwood-app"></div>
<div
id="cascade-container"
style="opacity: 0; overflow: hidden; height: 0"
></div>
</body>
</html>