mirror of
https://github.com/ApfelTeeSaft/LiveSplitOne.git
synced 2026-09-03 03:43:25 +00:00
Added web app manifest and icon.
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 269 KiB |
+17
-15
@@ -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>
|
||||
|
||||
@@ -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"
|
||||
}]
|
||||
}
|
||||
Reference in New Issue
Block a user