-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (33 loc) · 1.24 KB
/
index.html
File metadata and controls
45 lines (33 loc) · 1.24 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>my-app</title>
<base href="./" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<!-- STYLES -->
<link rel="stylesheet" href="/css/base.css"/>
<link rel="stylesheet" href="/app/main/components/my-button/my-button.css"/>
<link rel="stylesheet" href="/app/main/components/my-dialog/my-dialog.css"/>
<link rel="stylesheet" href="/npm/lib/jdebug.css"/>
<!-- /STYLES -->
</head>
<body ng-app="app">
<h1>my-app</h1>
<div ng-view>
</div>
<!-- SCRIPTS -->
<script src="/node_modules/angular/angular.js"></script>
<script src="/node_modules/angular-route/angular-route.js"></script>
<script src="/node_modules/scriptjs/dist/script.js"></script>
<script src="/node_modules/jasperjs/jasper.js"></script>
<script src="/app/bootstrap.js"></script>
<script src="/app/_areas.debug.js"></script>
<script src="/app/_routes.debug.js"></script>
<script src="/app/bootstrap.js"></script>
<script src="/npm/lib/jdebug.js"></script>
<!-- /SCRIPTS -->
</body>
</html>