-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
38 lines (32 loc) · 1.16 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="theme-color" content="#ff8ba7"/>
<link rel="apple-touch-icon" sizes="192x192" href="./icons/icon-192x192.png">
<link rel="icon" type="image/png" sizes="96x96" href="./icons/icon-96x96.png">
<link rel="icon" href="./icons/icon-128x128.png">
<title>Petpet</title>
</head>
<body>
<h1>Petpet</h1>
<div id="app"></div>
<script type="module" src="src/main.js"></script>
<div class="links">
<a onclick="window['showReadme']()">💡使用教程💡</a>
<a href="editor/index.html" target="_blank">🔮模板编辑器🔮</a>
<a href="https://github.com/Dituon/petpet-js">❤Github❤</a>
<a href="https://qm.qq.com/q/hlHuSF7ehO" target="_blank">🐧交流群🐧</a>
</div>
<script>
var _hmt = _hmt || [];
(function () {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?f20f227353380b0bad9c8a49860b6cd5";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</body>
</html>