2019-03-14 11:44:09 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>GNS3 Web UI</title>
|
|
|
|
<!-- It's important to have base here because of the script below //-->
|
2019-07-04 11:37:14 +03:00
|
|
|
<base href="/static/web-ui/">
|
2019-07-03 16:08:46 +03:00
|
|
|
|
2019-03-14 11:44:09 +02:00
|
|
|
<script>
|
|
|
|
var userAgent = navigator.userAgent.toLowerCase();
|
|
|
|
|
|
|
|
//in case we're running in electron because we need it for resources
|
|
|
|
if (userAgent.indexOf(' electron/') > -1) {
|
|
|
|
var base = document.getElementsByTagName('base');
|
|
|
|
if (base.length > 0) {
|
|
|
|
base[0].href = './';
|
|
|
|
} else {
|
|
|
|
document.write('<base href="./" />');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
|
|
|
|
|
|
|
|
<script type="application/javascript">
|
|
|
|
// Github Pages redirection
|
|
|
|
(function() {
|
|
|
|
var redirect = sessionStorage.redirect;
|
|
|
|
delete sessionStorage.redirect;
|
|
|
|
if (redirect && redirect != location.href) {
|
|
|
|
history.replaceState(null, null, redirect);
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
</script>
|
2020-10-05 16:42:19 +03:00
|
|
|
<link rel="stylesheet" href="styles.93c3010ec8fa34732040.css"></head>
|
2019-03-14 11:44:09 +02:00
|
|
|
<!-- <body class="mat-app-background" oncontextmenu="return false;"> -->
|
|
|
|
<body class="mat-app-background" oncontextmenu="return false;">
|
|
|
|
<app-root></app-root>
|
2020-04-07 17:11:44 +03:00
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
2020-03-25 01:26:02 +02:00
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5D6FZL9923"></script>
|
|
|
|
<script>
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
function gtag()
|
|
|
|
|
|
|
|
{dataLayer.push(arguments);}
|
|
|
|
gtag('js', new Date());
|
|
|
|
|
|
|
|
gtag('config', 'G-5D6FZL9923');
|
|
|
|
</script>
|
2020-11-04 13:51:25 +02:00
|
|
|
<script src="runtime.acf0dec4155e77772545.js" defer></script><script src="polyfills-es5.81e70f503de320d59b44.js" nomodule defer></script><script src="polyfills.7ae454d57e44d75e5d10.js" defer></script><script src="main.8367ffc0bf45ea7cf3c7.js" defer></script></body>
|
2019-03-14 11:44:09 +02:00
|
|
|
</html>
|