[Structure] Add index.html

Add index.html, which will serve as the main
point-of-entry for the full application.
WTD-519.
This commit is contained in:
Victor Woeltjen 2014-10-31 09:48:37 -07:00
parent 0bf0912bf8
commit 4f08d43037

24
index.html Normal file
View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script type="text/javascript"
src="platform/framework/lib/require.js">
</script>
</head>
<body>
<!-- This is a placeholder for validating initial project structure -->
<script type="text/javascript">
require(
["platform/framework/src/Temporary"],
function (Temporary) {
"use strict";
document.writeln(new Temporary().someMethod());
}
);
</script>
</body>
</html>