2022-11-03 20:08:04 +01:00
<!DOCTYPE html>
< html >
2022-11-08 17:42:06 +01:00
2022-11-03 20:08:04 +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.
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 = "/" >
< meta charset = "UTF-8" >
< meta content = "IE=Edge" http-equiv = "X-UA-Compatible" >
2022-11-08 17:36:09 +01:00
< meta name = "theme-color" content = "#ff4c4c" >
<!-- Primary Meta Tags -->
2022-11-08 17:42:06 +01:00
< 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.">
2022-11-08 17:36:09 +01:00
2022-11-08 17:42:06 +01:00
<!-- 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://pavouk.caras.cafe/banner.png" >
2022-11-08 17:36:09 +01:00
2022-11-08 17:42:06 +01:00
<!-- 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" >
2022-11-08 17:36:09 +01:00
2022-11-03 20:08:04 +01:00
<!-- 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" >
2022-11-08 17:36:09 +01:00
< link rel = "apple-touch-icon" href = "icon.png" >
2022-11-03 20:08:04 +01:00
<!-- Favicon -->
2022-11-08 17:42:06 +01:00
< link rel = "icon" type = "image/png" href = "icon.png" / >
2022-11-03 20:08:04 +01:00
2022-11-08 17:36:09 +01:00
< title > Pavouk | subnetování< / title >
2022-11-03 20:08:04 +01:00
< link rel = "manifest" href = "manifest.json" >
< script >
// The value below is injected by flutter build, do not touch.
2022-11-08 17:42:06 +01:00
var serviceWorkerVersion = '4215142274';
2022-11-03 20:08:04 +01:00
< / script >
<!-- This script adds the flutter initialization JS code -->
< script src = "flutter.js" defer > < / script >
2022-11-08 17:42:06 +01:00
< style >
.lds-ring {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
}
.lds-ring div {
box-sizing: border-box;
display: block;
position: absolute;
width: 64px;
height: 64px;
margin: 8px;
border: 8px solid #fff;
border-radius: 50%;
animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
border-color: #000 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
animation-delay: -0.15s;
}
@keyframes lds-ring {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%)
}
< / style >
2022-11-03 20:08:04 +01:00
< / head >
2022-11-08 17:42:06 +01:00
2022-11-03 20:08:04 +01:00
< body >
2022-11-08 17:42:06 +01:00
< div class = "center" >
< div class = "lds-ring" >
< div > < / div >
< div > < / div >
< div > < / div >
< div > < / div >
< / div >
< / div >
2022-11-03 20:08:04 +01:00
< script >
2022-11-08 17:42:06 +01:00
window.addEventListener('load', function (ev) {
2022-11-03 20:08:04 +01:00
// Download main.dart.js
_flutter.loader.loadEntrypoint({
serviceWorker: {
serviceWorkerVersion: serviceWorkerVersion,
}
2022-11-08 17:42:06 +01:00
}).then(function (engineInitializer) {
2022-11-03 20:08:04 +01:00
return engineInitializer.initializeEngine();
2022-11-08 17:42:06 +01:00
}).then(function (appRunner) {
2022-11-03 20:08:04 +01:00
return appRunner.runApp();
});
});
< / script >
< / body >
2022-11-08 17:42:06 +01:00
< / html >