-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
45 lines (45 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="txt" />
<meta name="twitter:description" content="semantic bitcoin storage" />
<meta name="twitter:image" content="https://txt.network/poster.png" />
<meta property="og:url" content="http://txt.network" />
<meta property="og:type" content="website" />
<meta property="og:title" content="txt" />
<meta property="og:description" content="semantic bitcoin storage" />
<meta property="og:image" content="https://txt.network/poster.png" />
<title>txt</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="semantic bitcoin storage">
<!--<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">-->
<link rel="stylesheet" href="vue.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet": href="all.min.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
// coverpage: true,
maxLevel: 2,
themeColor: "black",
}
document.addEventListener("DOMContentLoaded", () => {
setTimeout(() => {
let q = location.hash.split("=")
let id = q[1]
console.log("id = ", id)
const el = document.getElementById(id);
const y = el.getBoundingClientRect().top + window.pageYOffset;
window.scrollTo({top: y});
}, 1000)
})
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="prism-json.min.js"></script>
</body>
</html>