-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
48 lines (42 loc) · 1.79 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<script type="module" src="./src/main.js"></script>
<meta charset="utf-8" />
<title>Mininet Editor</title>
<link rel="apple-touch-icon" sizes="180x180" href="./img/icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./img/icons/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="192x192" href="./img/icons/android-chrome-192x192.png" />
<link rel="icon" type="image/png" sizes="194x194" href="./img/icons/favicon-194x194.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./img/icons/favicon-32x32.png" />
<link rel="manifest" href="./site.webmanifest" />
<link rel="mask-icon" href="./img/icons/safari-pinned-tab.svg" color="#009688" />
<link rel="shortcut icon" href="./favicon.ico" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="msapplication-TileColor" content="#009688" />
<meta name="msapplication-TileImage" content="./img/icons/mstile-144x144.png" />
<meta name="msapplication-config" content="./browserconfig.xml" />
<meta name="theme-color" content="#009688" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
</head>
<body>
<noscript>
<div style="position: relative; max-width: 40em; margin: 4em auto;">
<img style="display: block; width: 384px; height: 384px; margin: 4em auto;" src="./img/icons/android-chrome-384x384.png" alt="Mininet Editor logo" />
<h1>
Mininet Editor
</h1>
<p>
GUI topology editor for Mininet with Python script export.
</p>
<p>
<strong>
We're sorry but Mininet Editor doesn't work without JavaScript enabled.
Please enable it to continue.
</strong>
</p>
</div>
</noscript>
<div id="app" />
</body>
</html>