-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
22 lines (21 loc) · 912 Bytes
/
index.html
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>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Rosario" />
<title>Yew Styles Page</title>
<script>!function(i){if(i.search){var l={};i.search.slice(1).split("&").forEach(function(i){var a=i.split("=");l[a[0]]=a.slice(1).join("=").replace(/~and~/g,"&")}),void 0!==l.p&&window.history.replaceState(null,null,i.pathname.slice(0,-1)+(l.p||"")+(l.q?"?"+l.q:"")+i.hash)}}(window.location);</script>
<script src="app/index.ts"></script>
<script type="module">
import init, { run } from './yew_style_page.js';
const start = async() => {
await init('./yew_style_page_bg.wasm');
run();
};
start();
</script>
</head>
<body>
</body>
</html>