git-touch-android-ios-app/web/index.html

62 lines
1.9 KiB
HTML
Raw Normal View History

2019-11-05 11:25:03 +01:00
<!DOCTYPE html>
<html>
2020-11-14 09:59:32 +01:00
<head>
<!--
If you are serving your web app in a path other than the root, change the
href value below to reflect the base path you are serving from.
The path provided below has to start and end with a slash "/" in order for
it to work correctly.
2022-06-25 19:20:24 +02:00
For more details:
2020-11-14 09:59:32 +01:00
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
2022-06-25 19:20:24 +02:00
This is a placeholder for base href that will be replaced by the value of
the `--base-href` argument provided to `flutter build`.
2020-11-14 09:59:32 +01:00
-->
2022-06-25 19:20:24 +02:00
<base href="$FLUTTER_BASE_HREF" />
2020-11-14 09:59:32 +01:00
<meta charset="UTF-8" />
<meta content="IE=Edge" http-equiv="X-UA-Compatible" />
<meta name="description" content="A new Flutter project." />
<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
2022-06-25 19:20:24 +02:00
<meta name="apple-mobile-web-app-title" content="GitTouch" />
2020-11-14 09:59:32 +01:00
<link rel="apple-touch-icon" href="icons/Icon-192.png" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png" />
<title>GitTouch</title>
<link rel="manifest" href="manifest.json" />
2022-06-25 19:20:24 +02:00
<script>
// The value below is injected by flutter build, do not touch.
var serviceWorkerVersion = null;
</script>
<!-- This script adds the flutter initialization JS code -->
<script src="flutter.js" defer></script>
2020-11-14 09:59:32 +01:00
</head>
<body>
<script>
2022-06-25 19:20:24 +02:00
window.addEventListener("load", function (ev) {
// Download main.dart.js
_flutter.loader
.loadEntrypoint({
serviceWorker: {
serviceWorkerVersion: serviceWorkerVersion,
},
})
.then(function (engineInitializer) {
return engineInitializer.initializeEngine();
})
.then(function (appRunner) {
return appRunner.runApp();
});
});
2020-11-14 09:59:32 +01:00
</script>
</body>
2019-11-05 11:25:03 +01:00
</html>