-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (44 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en" ng-app="sod">
<head>
<base href="/"/>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Omar Habash</title>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600' rel='stylesheet' type='text/css'>
<link href="assets/dist/css/style.css" rel="stylesheet">
<!-- <script src="http://localhost:9000/livereload.js"></script> -->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- header -->
<div ng-include="'partials/header.html'"></div>
<!-- content -->
<div id="content-area" class="hide-on-mobile5">
<div class="view" ng-view></div>
</div>
<!-- footer -->
<div ng-include="'partials/footer.html'"></div>
<!-- libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<!-- angularjs -->
<script src="assets/js/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.0/angular-route.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.5/angular-animate.js"></script>
<script src="assets/js/ng-app.js"></script>
<script src="assets/js/ng-controller.js"></script>
<script src="assets/js/modernizr.custom.js"></script>
<!-- ap -->
<script src="assets/js/main.js"></script>
<!-- localdev -->
<!-- <script src='http://localhost:3000/socket.io/socket.io.js'></script> -->
<!-- <script src='http://localhost:3001/browser-sync-client.min.js'></script> -->
</body>
</html>