pixel-editor/views/index.hbs
Sam Keddy 6ec80cf410 fixed links to css/js urls
this should hopefully make it so the css js files are properly loaded when on the apps site. I also made it so the build file only compiles pixel-editor.js since it was compiling everything in the folder for no reason
2022-03-04 14:33:42 -05:00

46 lines
1.0 KiB
Handlebars

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{title}}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,700,900" rel="stylesheet">
<link rel="stylesheet" href="pixel-editor.css" />
<meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
{{{google-analytics}}}
{{{favicons}}}
</head>
<body oncontextmenu="return false;">
{{> compatibility-warning}}
{{> preload}}
{{> main-menu}}
{{> tools-menu}}
{{> colors-menu}}
{{> layers-menu}}
{{> tool-previews}}
{{> canvases}}
{{> holders}}
<div id="pop-up-container">
{{> new-pixel}}
{{> splash-page}}
{{> sprite-resize}}
{{> canvas-resize}}
{{> palette}}
{{> help}}
{{> about}}
{{> changelog}}
{{> credits}}
{{> settings}}
{{> pixel-export}}
{{> save-project}}
</div>
<script src="pixel-editor.js"></script>
{{#reload}}<script src="reload/reload.js"></script>{{/reload}}
</body>
</html>