[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:
24
index.html
Normal file
24
index.html
Normal 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>
|
||||
Reference in New Issue
Block a user