forked from HiDe-Techno-Tips/HiDe-Techno-Tips.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1.67 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
<html lang="en">
<head>
<title>HiDe Techno Tips</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://gitlist.himdek.com/GitHubList.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script>
pinElement = document.getElementById("pin");
gitpin("https://api.github.com/repos/HiDe-Techno-Tips/Blackeye-for-Windows", "repo", pinElement);
gitpin("https://api.github.com/repos/HiDe-Techno-Tips/Windows-Activator", "repo", pinElement);
gitpin("https://api.github.com/repos/HiDe-Techno-Tips/Mouse2Gamepad_for_Yuzu", "repo", pinElement);
gitpin("https://api.github.com/repos/HiDe-Techno-Tips/yuzu-Early-Access-Launcher", "repo", pinElement);
gitpin("https://api.github.com/gists/49a3cd23e9a931eb8920423a0fb3668a", "gist", pinElement);
gitpin("https://api.github.com/gists/e09340eae2861e1ad8b7f6bdba5ee9ff", "gist", pinElement);
gitpin("https://api.github.com/gists/eb8704e2da1d98240153165743960e17", "gist", pinElement);
const loaded = new Event("loaded");
listrepos("HiDe-Techno-Tips", document.getElementById("repostab")).then(reposcount => {
document.getElementById("repos").innerHTML = document.getElementById("repos").innerHTML + " <span>" + reposcount.toString() + "</span>";
document.dispatchEvent(loaded);
});
listgists("HimDek", document.getElementById("giststab")).then(gistscount => {
document.getElementById("gists").innerHTML = document.getElementById("gists").innerHTML + " <span>" + gistscount.toString() + "</span>";
document.dispatchEvent(loaded);
});
</script>
<div id="pin"></div>
</body>
</html>