mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-17 17:24:51 +02:00
42 lines
1.6 KiB
HTML
42 lines
1.6 KiB
HTML
<!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 //-->
|
|
<base href="C:/Program Files/Git/static/web-ui/">
|
|
|
|
<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>
|
|
<link rel="stylesheet" href="styles.cb254cd8da60d903b9c6.css"></head>
|
|
<!-- <body class="mat-app-background" oncontextmenu="return false;"> -->
|
|
<body class="mat-app-background" oncontextmenu="return false;">
|
|
<app-root></app-root>
|
|
<script type="text/javascript" src="runtime.26209474bfa8dc87a77c.js"></script><script type="text/javascript" src="polyfills.9cf8d114d9c6322da643.js"></script><script type="text/javascript" src="main.24e56b8969fd8986411a.js"></script></body>
|
|
</html>
|