36 lines
1.3 KiB
HTML
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>
|