-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 loc) · 1.07 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Simply Social</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="shortcut icon" href="" type="image/x-icon">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/app.css" />
</head>
<body>
<div id="ss-app" ng-cloak class="ng-cloak">
<div id="ss-view" ui-view autoscroll="false"></div>
</div>
<script src="js/app.libs.min.js"></script>
<script src="js/libs/require/require.js"></script>
<script>
(function(){
require.config({
baseUrl: 'js/',
catchError: true,
paths : {
},
map: {
'*': {
'css': 'libs/require-css/css'
}
}
});
require(['app'], function() {
//console.log('starting up...')
});
}());
</script>
</body>
</html>