-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.91 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.91 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
<!doctype html>
<html ng-app="app">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="renderer" content="webkit">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="format-detection" content="telephone=no">
<meta http-equiv="expires" CONTENT="-1">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta http-equiv="Pragma" CONTENT="no-cache">
<meta name="apple-mobile-web-app-title" content="MaterialUI"/>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<link rel="apple-touch-startup-image" media="screen and (orientation: portrait)" href="img/splash.png"/>
<link rel="apple-touch-startup-image" media="screen and (orientation: landscape)" href="img/splash.png"/>
<link rel="icon" type="image/png" href="img/favicon.png">
<link rel="apple-touch-icon-precomposed" href="img/app-icon72x72@2x.png">
<link rel="stylesheet" href="css/font.css" type="text/css">
<link rel="stylesheet" href="css/demo.css" type="text/css">
<link rel="stylesheet" href="css/material-ui-animate.css" type="text/css">
<link rel="stylesheet" href="css/material-ui.css" type="text/css">
<link rel="stylesheet" href="css/ng-animation.css" type="text/css">
<script src="jquery/jquery-2.1.1.min.js"></script>
<script src="angular/angular.min.js"></script>
<script src="angular/angular-touch.min.js"></script>
<script src="angular/angular-animate.min.js"></script>
<!--optional-->
<script src="angular/angular-ui-router.min.js"></script>
<!--required-->
<script src="js/material-ui.js"></script>
<script src="app/app.js"></script>
<script src="app/controller.js"></script>
</head>
<body>
<!---->
<div ui-view></div>
</body>
</html>