Updating templates path

This commit is contained in:
underscorediscovery
2013-11-28 01:23:25 -03:30
parent b809d8cc68
commit ba35d41715
70 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>::APP_TITLE::</title>
<style>
#lime_canvas {
position: absolute;
display: block;
width: ::WIN_WIDTH::px;
height: ::WIN_HEIGHT::px;
margin-left:-50%;
left:50%;
}
</style>
</head>
<body style="padding: 0; margin: 0; background-color: #FFFFFF;">
<!-- <div id="haxe:trace" style="position: absolute; z-index: 2147483647;::if !debug:: display: none;::end::"></div> -->
::if (LIB_NME)::
<div id="haxe:jeash" style="background-color: #::WIN_FLASHBACKGROUND::; width: ::if (WIN_WIDTH == 0)::100%::else::::WIN_WIDTH::px::end::; height: ::if (WIN_HEIGHT == 0)::100%::else::::WIN_HEIGHT::px::end::" data-framerate="::WIN_FPS::"></div>
::if DEBUG::<script type="text/javascript" src="./webgl-debug.js"></script>::end::
<script>function winParameters () { return ::WIN_PARAMETERS::; }</script>
<script id="haxe:jeash:script" type="text/javascript" src="./::APP_FILE::.js"></script>
::else::
<script type="text/javascript" src="./::APP_FILE::.js"></script>
::end::
::if DEBUG::<script type="text/javascript" src="./webgl-debug.js"></script>::end::
<canvas id="lime_canvas" tabindex="1" width="::WIN_WIDTH::" height="::WIN_HEIGHT::">
</canvas>
</body>
</html>