mirror of
https://github.com/lospec/pixel-editor.git
synced 2023-08-10 21:12:51 +03:00
6ec80cf410
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
46 lines
1.0 KiB
Handlebars
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> |