-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (80 loc) · 4.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head prefix="og: http://ogp.me/ns#">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>HardwebBlazor - A prototyping platform for testing USB and BLE devices entirely in the browser</title>
<base href="/" />
<meta name="description" content="HardwebBlazor is a platform for fast prototyping of USB and BLE devices entirely in the browser.">
<meta name="keywords" content="blazor, asp.net core, wasm, web assembly, browser, repl, fiddle, online, compile, execute, share, component, write, front-end, playground, testing, code, single page application, dotnet, csharp, html, open-source, platform">
<meta name="author" content="Vladislav Karamfilov and Kristian Mariyanov, adapted by Meinrad Recheis for MudBlazor and Marek Slowinski for HardwebBlazor">
<meta property="og:title" content="HardwebBlazor- Write, compile, execute and share Blazor components in the browser" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://hardweb.xyz/" />
<meta property="og:image" content="https://mudblazor.com/_content/MudBlazor.Docs/images/logo.png" />
<meta property="og:image:width" content="300" />
<meta property="og:image:height" content="300" />
<meta property="og:description" content="HardwebBlazor is a platform for fast prototyping of USB and BLE devices entirely in the browser. Perfect for code playground and testing." />
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito:200,300,400" rel="stylesheet">
<link rel="stylesheet" href="lib/unapp-theme/css/animate.css">
<link rel="stylesheet" href="lib/unapp-theme/css/icomoon.css">
<link rel="stylesheet" href="lib/unapp-theme/css/style.css">
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
<link href="css/site.css" rel="stylesheet" />
<script src="lib/split.js/split.min.js"></script>
<script src="lib/monaco-editor/min/vs/loader.js"></script>
<!-- Start Single Page Apps for GitHub Pages -->
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// MIT License
// https://github.com/rafgraph/spa-github-pages
// This script checks to see if a redirect is present in the query string,
// converts it back into the correct url and adds it to the
// browser's history using window.history.replaceState(...),
// which won't cause the browser to attempt to load the new url.
// When the single page app is loaded further down in this file,
// the correct url will be waiting in the browser's history for
// the single page app to route accordingly.
(function(l) {
if (l.search[1] === '/' ) {
var decoded = l.search.slice(1).split('&').map(function(s) {
return s.replace(/~and~/g, '&')
}).join('?');
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
}(window.location))
</script>
<!-- End Single Page Apps for GitHub Pages -->
</head>
<body>
<app>
<div class="d-flex justify-content-center app-loader">
<div class="spinner-border" role="status">
<span class="sr-only"></span>
</div>
</div>
</app>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webassembly.js"></script>
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
<script src="lib/unapp-theme/js/jquery.min.js"></script>
<script src="lib/unapp-theme/js/jquery.easing.1.3.js"></script>
<script src="lib/unapp-theme/js/bootstrap.min.js"></script>
<script src="lib/unapp-theme/js/jquery.waypoints.min.js"></script>
<script src="lib/unapp-theme/js/jquery.stellar.min.js"></script>
<script src="lib/unapp-theme/js/main.js"></script>
<script src="js/app.js"></script>
<script src="js/webusb.js"></script>
<script src="_content/WebBluetooth/JSInterop.js"></script>
<script src="_content/CurrieTechnologies.Razor.Clipboard/clipboard.min.js"></script>
</body>
</html>