-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
29 lines (29 loc) · 855 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ember Analytics</title>
<link rel="stylesheet" href="assets/app.css" media="screen" />
</head>
<body>
<div id="main" class="container">
<nav class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">Ember Analytics</a>
</div>
</div>
</nav>
</div>
<div class="container">
<script type="text/x-handlebars">
{{view SC.View templateName="ember-analytics/~templates/main_page"}}
</script>
</div>
</body>
<script src="assets/loader.js"></script>
<script src="assets/app.js"></script>
<script type="text/javascript">
loader.require('ember-analytics/main');
</script>
</html>