gns3-web-ui/src/index.html

31 lines
830 B
HTML
Raw Normal View History

2017-09-25 13:07:52 +02:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GNS3 Web UI Demo</title>
<base href="/">
<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
<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>
<body>
<app-root></app-root>
</body>
2017-10-19 12:16:59 +02:00
2017-09-25 13:07:52 +02:00
</html>