-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (54 loc) · 2.48 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="../img/ResonanceStoreIcon.webp"/>
<link rel="apple-touch-icon" href="../img/ResonanceStoreIcon.webp"/>
<link rel="icon" type="image/png" sizes="180x180" href="../img/ResonanceStoreIcon.webp"/>
<meta name="msapplication-TileColor" content="#A156f6" />
<meta name="msapplication-TileImage" content="../img/ResonanceStoreIcon.webp"/>
<meta name="theme-color" content="#A156f6" media="only x">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>TrollApps Web</title>
<link rel="stylesheet" href="https://theresonanceteam.github.io/trollapps-web/css/styles-trollapps.css">
<meta name="title" content="TrollApps Web" />
<meta name="description" content="Web-based version of TrollApps." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="webassets" />
<meta property="og:url" content="https://theresonanceteam.github.io/trollapps-web" />
<meta property="og:title" content="TrollApps Web" />
<meta property="og:description" content="Web-based version of TrollApps."/>
<meta property="og:image" content="https://theresonanceteam.github.io/img/meta.webp"/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://theresonanceteam.github.io/trollapps-web" />
<meta property="twitter:title" content="TrollApps Web" />
<meta property="twitter:description" content="Web-based version of TrollApps."/>
<meta property="twitter:image" content="https://theresonanceteam.github.io/img/meta.webp"/>
</head>
<body>
<div class="page-top">
<h1 class="page-header">Sources</h1>
<div class="container">
<button onclick="addLink()" class="add-button">+</button>
</div>
</div>
<div id="links-container"></div>
<script src="https://theresonanceteam.github.io/trollapps-web/js/index.js"></script>
<script src="https://theresonanceteam.github.io/trollapps-web/js/default-sources.js"></script>
<script>
// Load default repos on page load
window.onload = function () {
defaultRepos.forEach(function (repoURL) {
loadRepo(repoURL);
});
};
</script>
<footer>
<div class="container">
<p>© 2023 Resonance Team</p>
</div>
</footer>
</body>
</html>