36 lines
875 B
HTML
36 lines
875 B
HTML
|
<!-- #docplaster -->
|
||
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>CliQuickstart</title>
|
||
|
<base href="/">
|
||
|
|
||
|
{{#unless environment.production}}
|
||
|
<script src="/ember-cli-live-reload.js" type="text/javascript"></script>
|
||
|
{{/unless}}
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||
|
</head>
|
||
|
<!-- #docregion body -->
|
||
|
<body>
|
||
|
<cli-quickstart-app>Loading...</cli-quickstart-app>
|
||
|
<!-- #enddocregion body -->
|
||
|
|
||
|
|
||
|
{{#each scripts.polyfills}}<script src="{{.}}"></script>{{/each}}
|
||
|
<!-- #docregion import -->
|
||
|
<script>
|
||
|
System.import('system-config.js').then(function () {
|
||
|
System.import('main');
|
||
|
}).catch(console.error.bind(console));
|
||
|
</script>
|
||
|
<!-- #enddocregion import -->
|
||
|
|
||
|
|
||
|
|
||
|
<!-- #docregion body -->
|
||
|
</body>
|
||
|
<!-- #enddocregion body -->
|
||
|
</html>
|