-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 824 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<@base.tag@/>
<meta charset="UTF-8">
<title>My Application</title>
<@css.bundle theme="standard" alternateTheme="alternate" @/>
</head>
<body>
<div class="app">
<h1 id="hello-world"></h1>
<p>Add any new code for your app to src/App.js</p>
<div class="br-logo">
<!-- 'unbundled-resources' can be used for any assets you don't want part of the BRJS bundling process. -->
<img src="unbundled-resources/br-logo.png" />
</div>
</div>
<@i18n.bundle @/>
<!-- dev-minifier can be set to "combined" for all JS content to be bundled with a single request -->
<@js.bundle dev-minifier="none" prod-minifier="combined"@/>
<script>
( function() {
var App = require( 'qlabmasker/App' );
var app = new App();
} )();
</script>
</body>
</html>