77 lines
3.1 KiB
HTML
77 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<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.
|
|
|
|
For more details:
|
|
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
|
|
|
|
This is a placeholder for base href that will be replaced by the value of
|
|
the `--base-href` argument provided to `flutter build`.
|
|
-->
|
|
<base href="$FLUTTER_BASE_HREF">
|
|
|
|
<meta charset="UTF-8">
|
|
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
|
|
<meta name="theme-color" content="#ff4c4c">
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<meta name="title" content="Pavouk | subnetování">
|
|
<meta name="description" content="S pavoukem si můžete nechat vygenerovat náhodnou síť s náhodným počtem subnetů/podsítí, každý s náhodným počtem hostů, případně nechat vyřešit vlastní příklad.">
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="https://pavouk.caras.cafe/">
|
|
<meta property="og:title" content="Pavouk | subnetování">
|
|
<meta property="og:description" content="S pavoukem si můžete nechat vygenerovat náhodnou síť s náhodným počtem subnetů/podsítí, každý s náhodným počtem hostů, případně nechat vyřešit vlastní příklad.">
|
|
<meta property="og:image" content="https://metatags.io/assets/meta-tags-16a33a6a8531e519cc0936fbba0ad904e52d35f34a46c97a2c9f6f7dd7d336f2.png">
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary_large_image">
|
|
<meta property="twitter:url" content="https://pavouk.caras.cafe/">
|
|
<meta property="twitter:title" content="Pavouk | subnetování">
|
|
<meta property="twitter:description" content="S pavoukem si můžete nechat vygenerovat náhodnou síť s náhodným počtem subnetů/podsítí, každý s náhodným počtem hostů, případně nechat vyřešit vlastní příklad.">
|
|
<meta property="twitter:image" content="https://pavouk.caras.cafe/banner.png">
|
|
|
|
|
|
<!-- iOS meta tags & icons -->
|
|
<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="pavouk">
|
|
<link rel="apple-touch-icon" href="icon.png">
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" href="icon.png"/>
|
|
|
|
<title>Pavouk | subnetování</title>
|
|
<link rel="manifest" href="manifest.json">
|
|
|
|
<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>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
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();
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|