blob: 7c91ad50f881fa7efc48e355c6b1b8de2c56bf53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" href="./static/favicon.ico" type="image/png" />
<link rel="stylesheet" href="./static/bulma.min.css" />
<link rel="stylesheet" href="./static/fontawesome-solid.min.css" />
<title>BCard Wasm Web App</title>
</head>
<body>
<script type="module">
Error.stackTraceLimit = Infinity;
import init from "./pkg/app.js";
init();
</script>
<noscript>This page contains webassembly and javascript content, please enable javascript in your
browser.</noscript>
</body>
</html>
|