gns3-web-ui/src/index.html

53 lines
1.6 KiB
HTML
Raw Normal View History

2019-01-15 11:15:54 +01:00
<!DOCTYPE html>
2017-09-25 13:07:52 +02:00
<html lang="en">
2019-01-15 11:15:54 +01:00
<head>
<meta charset="utf-8" />
<title>GNS3 Web UI</title>
<!-- It's important to have base here because of the script below //-->
<base href="/" />
2019-01-15 11:15:54 +01:00
<script>
var userAgent = navigator.userAgent.toLowerCase();
2018-07-20 09:01:37 +02:00
2019-01-15 11:15:54 +01:00
//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="./" />');
}
2018-07-23 17:57:09 +02:00
}
2019-01-15 11:15:54 +01:00
</script>
2017-10-19 12:16:59 +02:00
2019-01-15 11:15:54 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
2017-10-19 12:16:59 +02:00
2019-01-15 11:15:54 +01:00
<script type="application/javascript">
// Github Pages redirection
2021-04-12 13:15:45 +02:00
(function () {
2019-01-15 11:15:54 +01:00
var redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect != location.href) {
history.replaceState(null, null, redirect);
}
})();
</script>
</head>
2019-02-11 05:46:37 -08:00
<!-- <body class="mat-app-background" oncontextmenu="return false;"> -->
<body class="mat-app-background" oncontextmenu="return false;">
2019-01-15 11:15:54 +01:00
<app-root></app-root>
2020-01-02 05:45:06 -08:00
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0BT7QQV1W1"></script>
2020-01-02 05:45:06 -08:00
<script>
window.dataLayer = window.dataLayer || [];
2021-04-12 13:15:45 +02:00
function gtag() {
dataLayer.push(arguments);
}
2020-01-02 05:45:06 -08:00
gtag('js', new Date());
2024-06-17 16:18:14 +02:00
gtag('config', 'G-0BT7QQV1W1');
2020-01-02 05:45:06 -08:00
</script>
2019-01-15 11:15:54 +01:00
</body>
2017-09-25 13:07:52 +02:00
</html>