-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 860 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>qrcode generator</title>
<link rel="shortcut icon" href="assets/image/favicon.ico" type="image/x-icon" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
<link href="//unpkg.com/bootstrap@latest/dist/css/bootstrap.min.css" rel="stylesheet" />
<base target="_blank"/>
</head>
<body>
<div id="app">
<script>
var isOnline = !!~location.host.indexOf('github');
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = (isOnline ? '//unpkg.com/iscanner-qrcode@latest' : '.') + '/dist/homepage.js';
var head = document.getElementsByTagName('head')[0];
head.appendChild(script);
</script>
</div>
</body>
</html>