-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 784 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (24 loc) · 784 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Zerotier Panel</title>
</head>
<body>
<div class="app"><router-view transition="fade"></router-view></div>
<script src="dist/build.js"></script>
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Source+Sans+Pro:400,300,600:latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})(); </script>
</body>
</html>