1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-19 06:19:08 +00:00
gns3-server/gns3server/static/web-ui/index.html

42 lines
1.6 KiB
HTML
Raw Normal View History

2019-03-14 09:44:09 +00: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 08:37:14 +00:00
<base href="/static/web-ui/">
2019-07-03 13:08:46 +00:00
2019-03-14 09:44:09 +00: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>
2019-08-29 16:39:26 +00:00
<link rel="stylesheet" href="styles.24cf27dc9bb6109b497a.css"></head>
2019-03-14 09:44:09 +00:00
<!-- <body class="mat-app-background" oncontextmenu="return false;"> -->
<body class="mat-app-background" oncontextmenu="return false;">
<app-root></app-root>
2019-09-27 08:57:03 +00:00
<script src="runtime.465c2333d355155ec5f3.js"></script><script src="polyfills-es5.ad0cd9ec34ac503f8b75.js" nomodule></script><script src="polyfills.ca9df831504175955169.js"></script><script src="main.9b1bd2eea6a0063aafe5.js"></script></body>
2019-03-14 09:44:09 +00:00
</html>