Added web app manifest and icon.

This commit is contained in:
Dark
2017-10-27 14:22:50 -04:00
parent 2140d0eb20
commit 38fc216750
3 changed files with 30 additions and 15 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 269 KiB

+17 -15
View File
@@ -1,23 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>LiveSplit One</title>
<link rel="icon" href="images/icon.ico">
</head>
<head>
<meta charset="UTF-8" />
<meta name="theme-color" content="#232323" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="icon" href="images/icon.ico">
<link rel="manifest" href="manifest.json">
<title>LiveSplit One</title>
</head>
<body>
<div id="base"></div>
<body>
<div id="base"></div>
<!-- Dependencies -->
<script src="https://use.fontawesome.com/bc82ed54e5.js"></script>
<!-- Dependencies -->
<script src="https://use.fontawesome.com/bc82ed54e5.js"></script>
<!-- Main -->
<script src="./dist/bundle.js"></script>
</body>
<!-- Main -->
<script src="./dist/bundle.js"></script>
</body>
</html>
+13
View File
@@ -0,0 +1,13 @@
{
"name": "LiveSplit One",
"short_name": "LiveSplit One",
"start_url": ".",
"display": "standalone",
"background_color": "#171717",
"description": "A version of LiveSplit that works on a lot of platforms.",
"icons": [{
"src": "images/icon.png",
"sizes": "1000x1000",
"type": "image/png"
}]
}