-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (36 loc) · 1.57 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 lang="en">
<head>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>__TITLE__</title>
<link rel="manifest" href="manifest.json">
<!-- Chrome -->
<meta name="theme-color" content="__COLOR_THEME__">
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="__TITLE__">
<link rel="icon" sizes="512x512" href="images/icon.png">
<!-- Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="__TITLE__">
<link rel="apple-touch-icon" href="images/icon.png">
<!-- Win8 -->
<meta name="msapplication-TileColor" content="__COLOR_BG__">
<meta name="msapplication-TileImage" content="images/icon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/css/bootstrap.min.css">
<!-- App CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- App JS -->
<script src="__MIN_JS__"></script>
<!-- jQuery first, then Tether, then Bootstrap JS. -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.2.0/js/tether.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.4/js/bootstrap.min.js"></script>
</body>
</html>