-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (49 loc) · 2.46 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
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pinokio Factory</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Distributed Pinokio Development Project">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<meta property="og:type" content="website">
<meta property="og:title" content="Pinokio Factory">
<meta property="og:description" content="Distributed Pinokio Development Project">
<meta property="og:image" content="https://factory.pinokio.computer/factory.jpg">
<meta property="og:url" content="https://factory.pinokio.computer">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Pinokio Factory">
<meta name="twitter:description" content="Distributed Pinokio Development Project">
<meta name="twitter:image" content="https://factory.pinokio.computer/factory.jpg">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="/prism2.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&family=Micro+5&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Pinokio Factory',
maxLevel: 2,
}
document.addEventListener("DOMContentLoaded", () => {
setTimeout(() => {
let el = document.querySelector("#" + location.hash.split("=")[1])
if (el) {
const y = el.getBoundingClientRect().top + window.pageYOffset;
window.scrollTo({top: y, behavior: "smooth" });
}
}, 1000)
})
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-json.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-javascript.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-python.min.js"></script>
</body>
</html>