summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorjelemux <jeremias.weber@protonmail.com>2021-02-09 23:18:45 +0100
committerjelemux <jeremias.weber@protonmail.com>2021-02-09 23:18:45 +0100
commit036a567bae8346eb38f9237f59645dbcc4f1cd8c (patch)
tree21a86e3c5cb8964030c414718190af12f3d26125 /index.html
parent9df3ff8d633a18e934d4e62b0e2e718620760552 (diff)
downloadwasm-card-036a567bae8346eb38f9237f59645dbcc4f1cd8c.tar.gz
wasm-card-036a567bae8346eb38f9237f59645dbcc4f1cd8c.tar.bz2
switch to cargo-make; format files with rustfmt
Diffstat (limited to 'index.html')
-rw-r--r--index.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..7c91ad5
--- /dev/null
+++ b/index.html
@@ -0,0 +1,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> \ No newline at end of file