2017-09-25 13:07:52 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>GNS3 Web UI Demo</title>
|
2018-01-04 11:42:43 +01: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) {
|
|
|
|
document.write('<base href="' + document.location + '" />');
|
|
|
|
}
|
|
|
|
// in case base href is not set, when not defined during the build time (for instance github.io pages)
|
|
|
|
else if (document.getElementsByTagName('base').length == 0) {
|
|
|
|
document.write('<base href="/" />');
|
|
|
|
}
|
|
|
|
</script>
|
2017-09-25 13:07:52 +02:00
|
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2017-10-19 12:16:59 +02:00
|
|
|
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
|
2017-09-25 13:07:52 +02:00
|
|
|
|
2018-01-18 10:51:17 +01:00
|
|
|
<!--
|
|
|
|
angular/angular-cli has an issue with handling imports with leading ~ (like: @import '~https://url.url';)
|
|
|
|
#Ref. https://github.com/angular/angular-cli/issues/9181
|
|
|
|
/* @TODO: make Material Icons self hosted */
|
|
|
|
//-->
|
|
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
2018-01-04 11:08:30 +01:00
|
|
|
|
2017-09-25 13:07:52 +02:00
|
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
|
|
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto+Slab:400,700" type="text/css">
|
2017-10-19 12:16:59 +02:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2017-09-25 13:07:52 +02:00
|
|
|
</head>
|
2017-10-31 15:45:38 +01:00
|
|
|
<body class="">
|
2017-09-25 13:07:52 +02:00
|
|
|
<app-root></app-root>
|
|
|
|
</body>
|
2017-10-19 12:16:59 +02:00
|
|
|
|
2017-09-25 13:07:52 +02:00
|
|
|
</html>
|