-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (25 loc) · 1.17 KB
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>tabbed-ui-sample</title>
<link href="bower_components/bootstrap/dist/css/bootstrap.css" type="text/css" rel="stylesheet">
<link href="app/styles/site.css" type="text/css" rel="stylesheet">
<!-- Oxygen, from Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=Oxygen' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- jquery, bootstrap -->
<script src="bower_components/jquery/dist/jquery.js" type="text/javascript"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js" type="text/javascript"></script>
<!-- ember.js -->
<script src="bower_components/ember/ember-template-compiler.js" type="text/javascript"></script>
<script src="bower_components/ember/ember.debug.js" type="text/javascript"></script>
<!-- application scripts -->
<script src="app/scripts/app.js" type="text/javascript"></script>
<script src="app/scripts/router.js" type="text/javascript"></script>
<script src="app/scripts/tab.js" type="text/javascript"></script>
<script src="app/scripts/user.js" type="text/javascript"></script>
<script src="app/scripts/templates.js" type="text/javascript"></script>
</body>
</html>